@shd101wyy/yo 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -38,5 +38,6 @@ export declare class CodeGenerator {
38
38
  shared?: boolean;
39
39
  staticLibrary?: boolean;
40
40
  cflags?: string;
41
+ emccEnvironment?: "web" | "node";
41
42
  }): void;
42
43
  }
@@ -552,6 +552,7 @@ export declare const BuiltinFunctions: {
552
552
  __yo_build_module: string[];
553
553
  __yo_build_module_link: string[];
554
554
  __yo_build_add_import: string[];
555
+ __yo_build_add_cflags: string[];
555
556
  __yo_build_dep_module: string[];
556
557
  asm: string[];
557
558
  global_asm: string[];
@@ -3,3 +3,5 @@ export interface InitOptions {
3
3
  name?: string;
4
4
  }
5
5
  export declare function initProject(options: InitOptions): void;
6
+ declare function generateDepsYo(): string;
7
+ export { generateDepsYo };