easy-api.ts
Version:
A powerful library to create your own API with ease.
16 lines (15 loc) • 389 B
TypeScript
export declare class ReaderType {
static FunctionName: string;
static FunctionParams: string;
static Text: string;
}
export interface ReaderToken {
type: ReaderType;
value: string;
}
export declare class ReaderV1 {
static read(c: string, trim?: boolean): ReaderToken[];
}
export declare class ReaderV2 {
static read(c: string, trim?: boolean): ReaderToken[];
}