Lines Matching +full:module +full:- +full:number
1 # Universal module definitions (UMD) are not supported
3 Rule ``arkts-no-umd``
7 ArkTS does not support universal module definitions (UMD) because in the
8 language there is no concept of "script" (as opposed to "module").
9 Besides, in ArkTS import is a compile-time, not a runtime feature.
18 // math-lib.d.ts
19 export const isPrime(x: number): boolean
32 // math-lib.d.ts
34 export isPrime(x: number): boolean
38 import { mathLib } from "math-lib"
45 - Recipe 129: Wildcards in module names are not supported (``arkts-no-module-wildcards``)