next-flow-interface
Version:
Interface package for NEXT FlOW. You can use this package to build your own plugin that can control anything.
11 lines • 418 B
TypeScript
import { RvPath } from 'rhine-var';
export type UseTAttributes = <T = unknown>(path?: string) => {
sid: string;
nid: string;
state: T | null;
set: (key: string | RvPath, value: unknown) => void;
multiSet: (key: string | RvPath, value: unknown) => void;
check: (key: string | RvPath) => void;
multiCheck: (key: string | RvPath) => void;
};
//# sourceMappingURL=use-t-attributes.type.d.ts.map