alwaysai
Version:
The alwaysAI command-line interface (CLI)
31 lines • 835 B
TypeScript
export declare const PLEASE_LOG_IN_MESSAGE = "Authentication is required for this action. Please run \"alwaysai user login\"";
export declare const credentialsStore: {
setItem(key: string, value: string): void;
getItem(key: string): string;
removeItem(key: string): void;
clear(): void;
path: string;
read: () => {
[x: string]: any;
};
readIfExists: () => {
[x: string]: any;
} | undefined;
write: (config: {
[x: string]: any;
}) => {
serialized: string;
changed: boolean;
};
remove: () => {
changed: boolean;
};
update: (updater: (config: {
[x: string]: any;
}) => void) => {
serialized: string;
changed: boolean;
};
exists: () => boolean;
};
//# sourceMappingURL=credentials-store.d.ts.map