diff --git a/module_example/test.ts b/module_example/test.ts index 47ad7dd3da9b6dff0dcccdb806fc5cd763f49ce4..5314462dcb368ffe352e67a0af21fd2583cce225 100644 --- a/module_example/test.ts +++ b/module_example/test.ts @@ -1,9 +1,9 @@ -import { banner,lyric } from '../main' -banner({ type:0 }).then(res=>{ +import { banner, lyric } from '../main' +banner({ type: 0 }).then((res) => { console.log(res) }) lyric({ - id:"33894312" -}).then(res=>{ + id: '33894312', +}).then((res) => { console.log(res) })