Skip to content

Commit

Permalink
fixup! fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alicewriteswrongs committed Jun 21, 2023
1 parent b3f6a40 commit 968e19b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions test/docs-json/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"ImportedInterface": {
"location": "import",
"path": "./imported-interface",
"id": "./src/components/my-component/imported-interface.ts::ImportedInterface"
"id": "src/components/my-component/imported-interface.ts::ImportedInterface"
},
"T": {
"location": "global",
Expand All @@ -57,52 +57,52 @@
}
],
"typeLibrary": {
"./src/components/my-component/imported-interface.ts::ImportedInterface": {
"src/components/my-component/imported-interface.ts::ImportedInterface": {
"declaration": "export interface ImportedInterface<T> {\n test: 'boop';\n another: T;\n}",
"docstring": "Some JSDoc here describing something or other\n\nIt's multi-line, etc.",
"path": "src/components/my-component/imported-interface.ts"
},
"./src/components/interfaces.ts::Pie": {
"src/components/interfaces.ts::Pie": {
"declaration": "export interface Pie {\n /**\n * What flavor of pie, hmm?\n *\n * This JSDoc should show up in the 'declaration' field in the JSON output.\n */\n type: 'pumpkin' | 'apple' | 'pecan';\n name: string;\n diameter: number;\n}",
"docstring": "Interface that should be included",
"path": "src/components/interfaces.ts"
},
"./src/components/interfaces.ts::FooBar": {
"src/components/interfaces.ts::FooBar": {
"declaration": "{\n biz: string;\n}",
"docstring": "",
"path": "src/components/interfaces.ts"
},
"./src/components/interfaces.ts::FizzBuzz": {
"src/components/interfaces.ts::FizzBuzz": {
"declaration": "export enum FizzBuzz {\n One,\n Two,\n Three,\n}",
"docstring": "Enum that should be included",
"path": "src/components/interfaces.ts"
},
"./src/components/interfaces.ts::StringUnion": {
"src/components/interfaces.ts::StringUnion": {
"declaration": "export type StringUnion = 'left' | 'right';",
"docstring": "",
"path": "src/components/interfaces.ts"
},
"./src/components/test-not-used.ts::ReExportedUnderNewNameWithType": {
"src/components/test-not-used.ts::ReExportedUnderNewNameWithType": {
"declaration": "export interface ReExportedUnderNewNameWithType {\n test: string;\n}",
"docstring": "If I show up then a re-export w/ alias and `export type` works!",
"path": "src/components/test-not-used.ts"
},
"./src/components/test-not-used.ts::ReExportedUnderNewName": {
"src/components/test-not-used.ts::ReExportedUnderNewName": {
"declaration": "export interface ReExportedUnderNewName {\n test: string;\n}",
"docstring": "If I show up then a re-export w/ alias works!",
"path": "src/components/test-not-used.ts"
},
"./src/components/test-not-used.ts::ReExportedWithType": {
"src/components/test-not-used.ts::ReExportedWithType": {
"declaration": "export interface ReExportedWithType {\n test: string;\n}",
"docstring": "If I show up then a re-export w/ `export type` works!",
"path": "src/components/test-not-used.ts"
},
"./src/components/test-not-used.ts::ReExported": {
"src/components/test-not-used.ts::ReExported": {
"declaration": "export interface ReExported {\n test: string;\n}",
"docstring": "If I show up then a re-export works!",
"path": "src/components/test-not-used.ts"
},
"./src/components/test-not-used.ts::IncludedInWildcard": {
"src/components/test-not-used.ts::IncludedInWildcard": {
"declaration": "export interface IncludedInWildcard {\n test: string;\n}",
"docstring": "If I show up then a `export * from '...'` works!",
"path": "src/components/test-not-used.ts"
Expand Down

0 comments on commit 968e19b

Please sign in to comment.