mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
import * as Bluebird from 'bluebird'
|
|
|
|
export interface PluginStorageManager {
|
|
getData: (key: string) => Bluebird<string>
|
|
|
|
storeData: (key: string, data: any) => Bluebird<any>
|
|
}
|