Skip to content

Commit

Permalink
re-run type generation using yarn
Browse files Browse the repository at this point in the history
Yarn produces different types to npm, who knew.
  • Loading branch information
43081j committed Mar 29, 2021
1 parent 64fc30f commit d67a594
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3236,7 +3236,17 @@ declare abstract class ExportInfo {
| "maybe provided (runtime-defined)"
| "provided"
| "not provided";
getRenameInfo(): string;
getRenameInfo():
| string
| "missing provision and use info prevents renaming"
| "usage prevents renaming (no provision info)"
| "missing provision info prevents renaming"
| "missing usage info prevents renaming"
| "usage prevents renaming"
| "could be renamed"
| "provision prevents renaming (no use info)"
| "usage and provision prevents renaming"
| "provision prevents renaming";
}
declare interface ExportSpec {
/**
Expand Down

0 comments on commit d67a594

Please sign in to comment.