fractal-core
Version:
A minimalist and well crafted app, content or component is our conviction
24 lines (23 loc) • 526 B
TypeScript
export declare const ChildComp: {
state: {
result: string;
count: number;
};
inputs: (s: any, F: any) => {
inc: () => Promise<void>;
changed: (value: any) => Promise<void>;
};
actions: {
Inc: () => (s: any) => void;
};
interfaces: {};
};
export declare const ReceptorComp: {
state: {};
inputs: (s: any, F: any) => {
onInit: () => Promise<void>;
myEvent: (count: any) => Promise<number>;
};
actions: {};
interfaces: {};
};