Skip to content

Commit

Permalink
Merge pull request #20 from gcandal/gc/register-type
Browse files Browse the repository at this point in the history
Add base/main type declarations
  • Loading branch information
joamag committed Dec 24, 2020
2 parents 1cb395d + 4715840 commit 1ef1f50
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions types/base/index.d.ts
@@ -0,0 +1 @@
export * from "./main";
3 changes: 3 additions & 0 deletions types/base/main.d.ts
@@ -0,0 +1,3 @@
export declare function register(name: string, value: any): void;
export declare function unregister(name: string): void;
export declare function request(name: string): any;
1 change: 1 addition & 0 deletions types/index.d.ts
@@ -1 +1,2 @@
export * from "./base";
export * from "./util";

0 comments on commit 1ef1f50

Please sign in to comment.