UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

6 lines (5 loc) 292 B
export type ActionGate<T extends Record<string, boolean | undefined>> = (key: keyof T, defaultValue?: boolean) => boolean; export declare function createAccountActionGate<T extends Record<string, boolean | undefined>>(params: { baseActions?: T; accountActions?: T; }): ActionGate<T>;