adds getToken(string,string) and deleteToken(string,string) to typings
This commit is contained in:
parent
3652a05848
commit
96783d46eb
|
@ -1088,6 +1088,8 @@ declare module 'react-native-firebase' {
|
|||
interface InstanceId {
|
||||
delete(): Promise<void>;
|
||||
get(): Promise<string>;
|
||||
getToken(authorizedEntity: string, scope: string): Promise<string>;
|
||||
deleteToken(authorizedEntity: string, scope: string): Promise<void>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue