-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change plugin to generate d.ts files with correct type assertion
- Loading branch information
1 parent
7959251
commit 0b00b8d
Showing
42 changed files
with
53 additions
and
6 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
...6689ce2a66a259a9dc26913cb6846cc668496/code/cache/0c1ce4cba60b52545be9a21f36a3a6c728ead160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"code":"import Tab from './tabs/tab';\r\nimport TabBar from './tabs/tab-bar';\r\nimport './tabs/tab.scss';\r\nexport { Tab, TabBar, };\r\n//# sourceMappingURL=index.js.map","references":["/Users/gustavofreiresantos/projetos/tabs-react-project/src/components/tabs/tab.tsx","/Users/gustavofreiresantos/projetos/tabs-react-project/src/components/tabs/tab-bar.tsx"],"map":"{\"version\":3,\"file\":\"index.js\",\"sourceRoot\":\"\",\"sources\":[\"../../../src/components/index.tsx\"],\"names\":[],\"mappings\":\"AAAA,OAAO,GAAG,MAAM,YAAY,CAAC;AAC7B,OAAO,MAAM,MAAM,gBAAgB,CAAC;AACpC,OAAO,iBAAiB,CAAC;AAEzB,OAAO,EACL,GAAG,EACH,MAAM,GACP,CAAC\"}","dts":{"name":"/Users/gustavofreiresantos/projetos/tabs-react-project/components/index.d.ts","writeByteOrderMark":false,"text":"import Tab from './tabs/tab';\r\nimport TabBar from './tabs/tab-bar';\r\nimport './tabs/tab.scss';\r\nexport { Tab, TabBar, };\r\n"}} |
1 change: 1 addition & 0 deletions
1
...6689ce2a66a259a9dc26913cb6846cc668496/code/cache/c50c51545ab2d4c6b796c9c6c266ab4f10e7fe5d
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...6689ce2a66a259a9dc26913cb6846cc668496/code/cache/d34831b297130f017b3329cfa3a838e662c2db3d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"code":"export function arrayMove(arr, oldIndex, newIndex) {\r\n arr.splice(newIndex, 0, arr.splice(oldIndex, 1)[0]);\r\n return arr;\r\n}\r\n//# sourceMappingURL=utils.js.map","references":[],"map":"{\"version\":3,\"file\":\"utils.js\",\"sourceRoot\":\"\",\"sources\":[\"../../../../src/components/tabs/utils.ts\"],\"names\":[],\"mappings\":\"AAAA,MAAM,UAAU,SAAS,CAAC,GAAU,EAAE,QAAgB,EAAE,QAAgB;IACtE,GAAG,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IACpD,OAAO,GAAG,CAAC;AACb,CAAC\"}","dts":{"name":"/Users/gustavofreiresantos/projetos/tabs-react-project/components/tabs/utils.d.ts","writeByteOrderMark":false,"text":"export declare function arrayMove(arr: any[], oldIndex: number, newIndex: number): any[];\r\n"}} |
1 change: 1 addition & 0 deletions
1
...6689ce2a66a259a9dc26913cb6846cc668496/code/cache/fcb0426d553098a9da51ffa7c4a61a0465c67a26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"code":"import React from 'react';\r\nimport uuid from 'uuid';\r\nconst Tab = (props) => {\r\n return (React.createElement(\"div\", { className: \"tab-wrapper\", key: uuid() },\r\n React.createElement(\"div\", null, props.children)));\r\n};\r\nexport default Tab;\r\n//# sourceMappingURL=tab.js.map","references":["/Users/gustavofreiresantos/projetos/tabs-react-project/node_modules/@types/react/index.d.ts","/Users/gustavofreiresantos/projetos/tabs-react-project/node_modules/@types/uuid/index.d.ts"],"map":"{\"version\":3,\"file\":\"tab.js\",\"sourceRoot\":\"\",\"sources\":[\"../../../../src/components/tabs/tab.tsx\"],\"names\":[],\"mappings\":\"AAAA,OAAO,KAAuB,MAAM,OAAO,CAAC;AAC5C,OAAO,IAAI,MAAM,MAAM,CAAC;AAUxB,MAAM,GAAG,GAAG,CAAC,KAAe,EAAE,EAAE;IAC9B,OAAO,CACL,6BACE,SAAS,EAAC,aAAa,EACvB,GAAG,EAAE,IAAI,EAAE;QAEX,iCACG,KAAK,CAAC,QAAQ,CACX,CACD,CACR,CAAC;AACJ,CAAC,CAAC;AACF,eAAe,GAAG,CAAC\"}","dts":{"name":"/Users/gustavofreiresantos/projetos/tabs-react-project/components/tabs/tab.d.ts","writeByteOrderMark":false,"text":"import { ReactElement } from 'react';\r\nexport interface TabProps {\r\n resourceData?: object;\r\n children: any;\r\n active?: boolean;\r\n tabHeader?: ReactElement;\r\n text?: string;\r\n}\r\ndeclare const Tab: (props: TabProps) => JSX.Element;\r\nexport default Tab;\r\n"}} |
1 change: 1 addition & 0 deletions
1
...9dc26913cb6846cc668496/semanticDiagnostics/cache/0c1ce4cba60b52545be9a21f36a3a6c728ead160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
1 change: 1 addition & 0 deletions
1
...9dc26913cb6846cc668496/semanticDiagnostics/cache/c50c51545ab2d4c6b796c9c6c266ab4f10e7fe5d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
1 change: 1 addition & 0 deletions
1
...9dc26913cb6846cc668496/semanticDiagnostics/cache/d34831b297130f017b3329cfa3a838e662c2db3d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
1 change: 1 addition & 0 deletions
1
...9dc26913cb6846cc668496/semanticDiagnostics/cache/fcb0426d553098a9da51ffa7c4a61a0465c67a26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
1 change: 1 addition & 0 deletions
1
...dc26913cb6846cc668496/syntacticDiagnostics/cache/0c1ce4cba60b52545be9a21f36a3a6c728ead160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
1 change: 1 addition & 0 deletions
1
...dc26913cb6846cc668496/syntacticDiagnostics/cache/c50c51545ab2d4c6b796c9c6c266ab4f10e7fe5d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
1 change: 1 addition & 0 deletions
1
...dc26913cb6846cc668496/syntacticDiagnostics/cache/d34831b297130f017b3329cfa3a838e662c2db3d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
1 change: 1 addition & 0 deletions
1
...dc26913cb6846cc668496/syntacticDiagnostics/cache/fcb0426d553098a9da51ffa7c4a61a0465c67a26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters