summaryrefslogtreecommitdiff
path: root/src/text/parse/elements/bold.ts
diff options
context:
space:
mode:
authorrinsuki <428rinsuki+git@gmail.com>2018-06-17 19:55:39 +0900
committerrinsuki <428rinsuki+git@gmail.com>2018-06-17 19:55:39 +0900
commit8c40917cc2762a498cd2d35a4f4f69b01de3d672 (patch)
treeb2e32a07e1fb85964558428068f745a1c299118f /src/text/parse/elements/bold.ts
parentbuild:ts success (diff)
downloadsharkey-8c40917cc2762a498cd2d35a4f4f69b01de3d672.tar.gz
sharkey-8c40917cc2762a498cd2d35a4f4f69b01de3d672.tar.bz2
sharkey-8c40917cc2762a498cd2d35a4f4f69b01de3d672.zip
[noImplicitAny: true] src/text
Diffstat (limited to 'src/text/parse/elements/bold.ts')
-rw-r--r--src/text/parse/elements/bold.ts12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/text/parse/elements/bold.ts b/src/text/parse/elements/bold.ts
index ce25764457..0566ace8b7 100644
--- a/src/text/parse/elements/bold.ts
+++ b/src/text/parse/elements/bold.ts
@@ -2,7 +2,13 @@
* Bold
*/
-module.exports = text => {
+export type TextElementBold = {
+ type: "bold"
+ content: string
+ bold: string
+};
+
+export default function(text: string) {
const match = text.match(/^\*\*(.+?)\*\*/);
if (!match) return null;
const bold = match[0];
@@ -10,5 +16,5 @@ module.exports = text => {
type: 'bold',
content: bold,
bold: bold.substr(2, bold.length - 4)
- };
-};
+ } as TextElementBold;
+}