We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a11249 commit 21e93ddCopy full SHA for 21e93dd
src/types/index.ts
@@ -23,4 +23,4 @@ export * from './integer'
23
export * from './mimeType'
24
25
// yes, this is node-specific, but who cares - these are just types
26
-export type * from './nodePackageJson'
+export * from './nodePackageJson'
src/types/nodePackageJson.ts
@@ -52,8 +52,7 @@ export interface NodePackageJson {
52
}
53
54
55
-/* TODO: write type assertion
56
export function isNodePackageJson (value: any): value is NodePackageJson {
57
- ...
+ /* TODO: write type assertion -- pullrequests welcome */
+ throw new Error("Not implemented")
58
59
-*/
0 commit comments