chore: initialize dependencies and zca-js project files
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
import { type ContextSession } from "../context.js";
|
||||
import { type FactoryUtils } from "../utils.js";
|
||||
export type CustomAPIProps<T, K> = {
|
||||
ctx: ContextSession;
|
||||
utils: FactoryUtils<T>;
|
||||
props: K;
|
||||
};
|
||||
export type CustomAPICallback<T, K> = (props: CustomAPIProps<T, K>) => T | Promise<T>;
|
||||
export declare const customFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => <T, K = any>(name: string, callback: CustomAPICallback<T, K>) => void;
|
||||
Reference in New Issue
Block a user