Skip to content

Commit

Permalink
chore@build typings
Browse files Browse the repository at this point in the history
  • Loading branch information
selfrefactor committed Mar 7, 2020
1 parent 6b54c9e commit f96d2e1
Show file tree
Hide file tree
Showing 2 changed files with 961 additions and 8 deletions.
6 changes: 4 additions & 2 deletions files/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ interface Dictionary<T> {
}

type Merge<Primary, Secondary> = { [K in keyof Primary]: Primary[K] } & { [K in Exclude<keyof Secondary, CommonKeys<Primary, Secondary>>]: Secondary[K] };

// INTERFACES_MARKER_END


// INJECT_RAMBDAX

// SINGLE_MARKER
// TODO
export function add(a: number, b: number): number;
export function add(a: number): (b: number) => number;

Expand Down
Loading

0 comments on commit f96d2e1

Please sign in to comment.