bkc
Version:
:dog: If there are no dogs in Heaven, then when I die I want to go where they went.
16 lines (15 loc) • 395 B
TypeScript
export declare type TExecuteType = 'external' | 'internal' | 'return';
export declare type TVarType = 'string' | 'number';
export interface IExc {
type: TExecuteType;
value: string;
arg: any;
}
export interface IVar {
name: string;
type?: TVarType;
value: any;
}
declare type TExecute = IExc[];
export declare type TVars = IVar[];
export default TExecute;