mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 16:30:27 +00:00
6 lines
147 B
TypeScript
6 lines
147 B
TypeScript
|
|
export interface IBinaryFile {
|
||
|
|
base64: string | undefined;
|
||
|
|
getStoragePath(): string | undefined;
|
||
|
|
setStoragePath(path: string): void;
|
||
|
|
}
|