-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add receive and send link prototype * refactor UrlPayload related code to support wechaty/wechaty#1539 * 0.13.1 * add url * 0.13.2 * fix pack testing * 0.13.3 * upgrade typescript 3 * 0.13.4 * vscode config clean * 0.13.5
- Loading branch information
1 parent
31040b5
commit 15861a0
Showing
8 changed files
with
44 additions
and
21 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,23 +1,18 @@ | ||
{ | ||
"typescript.tsdk": "./node_modules/typescript/lib" | ||
, "update.channel": "none" | ||
, "files.exclude": { | ||
"node_modules/": true | ||
, "package/": true | ||
} | ||
, "alignment": { | ||
"operatorPadding": "right" | ||
, "indentBase": "firstline" | ||
, "surroundSpace": { | ||
"typescript.tsdk": "./node_modules/typescript/lib", | ||
"files.exclude": { | ||
"node_modules/": true, | ||
"package/": true | ||
}, | ||
"alignment": { | ||
"operatorPadding": "right", | ||
"indentBase": "firstline", | ||
"surroundSpace": { | ||
"colon": [1, 1], // The first number specify how much space to add to the left, can be negative. The second number is how much space to the right, can be negative. | ||
"assignment": [1, 1], // The same as above. | ||
"arrow": [1, 1], // The same as above. | ||
"comment": 2 // Special how much space to add between the trailing comment and the code. | ||
// If this value is negative, it means don't align the trailing comment. | ||
} | ||
} | ||
, "eslint.autoFixOnSave": false | ||
, "tslint.autoFixOnSave": false | ||
, "editor.formatOnSave": false | ||
, "typescript.extension.sortImports.sortOnSave": false | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export interface UrlPayload { | ||
description? : string, | ||
thumbnailUrl? : string, | ||
title : string, | ||
url : string, | ||
} |
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