1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 18:29:27 +02:00

Upgrade to angular 10

This commit is contained in:
Chocobozzz 2020-06-26 08:37:26 +02:00 committed by Chocobozzz
parent 4504f09f6e
commit 583eb04b54
37 changed files with 2006 additions and 1891 deletions

View file

@ -1,7 +1,5 @@
import * as Bluebird from 'bluebird'
export interface PluginStorageManager {
getData: (key: string) => Bluebird<string>
getData: (key: string) => Promise<string>
storeData: (key: string, data: any) => Bluebird<any>
storeData: (key: string, data: any) => Promise<any>
}