[build] add typescript compiler (#2697)

This commit is contained in:
neverland
2019-02-07 10:43:36 +08:00
committed by GitHub
parent 3e0ac872c8
commit 0fb1083b68
11 changed files with 85 additions and 16 deletions

View File

@@ -0,0 +1,14 @@
import useBem from './bem';
import useSfc from './sfc';
import useI18n from './i18n';
type UseReturn = [
ReturnType<typeof useSfc>,
ReturnType<typeof useBem>,
ReturnType<typeof useI18n>
];
export function use(name: string): UseReturn {
name = 'van-' + name;
return [useSfc(name), useBem(name), useI18n(name)];
}