yao-app-ts-types
Version:
typescript types for yao application
27 lines (21 loc) • 457 B
TypeScript
export type BaseType = "table" | "form" | "chart" | "list" | "dashboard";
export declare namespace XgenGlobal {
interface StringObject {
[key: string]: string;
}
interface NumberObject {
[key: string]: number;
}
interface BooleanObject {
[key: string]: boolean;
}
interface AnyObject {
[key: string]: any;
}
interface Match {
type: string;
model: string;
id?: string;
formType?: "view" | "edit";
}
}