gentyl
Version:
A Generator That You'll Love
24 lines (23 loc) • 609 B
TypeScript
declare var uuid: any;
declare namespace Gentyl {
interface FormRef {
f: string;
c: string;
m: string;
}
interface FunctionCache {
storeFunction(func: Function): string;
recoverFunction(id: string): Function;
}
interface Bundle {
node: any;
form: FormRef;
state: any;
}
function isBundle(object: any): boolean;
function deformulate(fromNode: ResolutionNode): any;
function reformulate(formRef: FormRef): FormSpec;
class Reconstruction extends ResolutionNode {
constructor(bundle: Bundle);
}
}