mirror of https://github.com/Chocobozzz/PeerTube
6 lines
141 B
TypeScript
6 lines
141 B
TypeScript
|
export interface PluginStorageManager {
|
||
|
getData: (key: string) => Promise<string>
|
||
|
|
||
|
storeData: (key: string, data: any) => Promise<any>
|
||
|
}
|