export * as v1 from './v1'; export * from './common'; export declare type BooleanResponse = { result: boolean; }; export declare type NumberResponse = { result: number; }; /** * Empty base interface that all function interfaces must inherit. * Doesn't do anything except signify that an interface is an API function. * If it were to do something, it'd confuse the linter so bad. Already tried. */ export interface BaseFunction { }