weex.js 288 B

1234567891011
  1. // global flag to be compiled away
  2. declare var __WEEX__: boolean;
  3. declare type WeexCompilerOptions = CompilerOptions & {
  4. // whether to compile special template for <recycle-list>
  5. recyclable?: boolean;
  6. };
  7. declare type WeexCompiledResult = CompiledResult & {
  8. '@render'?: string;
  9. };