Skip to content

Commit

Permalink
fix: remote config client types
Browse files Browse the repository at this point in the history
  • Loading branch information
ChoGathK committed Sep 7, 2022
1 parent cbe6809 commit 325c1ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/common/interface/remote-config.ts
@@ -1,7 +1,7 @@
export interface RemoteConfigClient {
close: (...args: any[]) => Promise<any>;
init: <T = any>(...args: any[]) => Promise<Partial<T>>;
sync: <T = any>(...args: any[]) => Promise<Partial<T>>;
close?: (...args: any[]) => Promise<any>;
init: (...args: any[]) => Promise<Partial<any>>;
sync: (...args: any[]) => Promise<Partial<any>>;
subscribe?: (key: string, callback: (value: any) => any) => Promise<void>;
}

Expand Down

0 comments on commit 325c1ad

Please sign in to comment.