// Type definitions for [~λΌμ΄λΈλ¬λ¦¬ μ΄λ¦~] [~μ νμ λ²μ μ«μ~]
// Project: [~νλ‘μ νΈ μ΄λ¦~]
// Definitions by: [~λ΄ μ΄λ¦~] <[~λ΄ URL~]>
/*~ ν΄λμ€ λͺ¨λμ μν λͺ¨λ ν
νλ¦Ώ μ
λλ€.
*~ μ΄λ¦μ index.d.tsλ‘ λ³κ²½νκ³ , λͺ¨λ μ΄λ¦μ ν΄λμ λ°°μΉν΄μΌ ν©λλ€.
*~ μλ₯Ό λ€μ΄, "super-greeter" νμΌμ μμ±νλ κ²½μ°
*~ μ΄ νμΌμ 'super-greeter/index.d.ts'κ° λμ΄μΌ ν©λλ€.
*/
// ES6 λͺ¨λμ μ§μ ν΄λμ€ κ°μ²΄λ₯Ό exportν μ μμ΅λλ€.
// μ΄ νμΌμ CommonJS-styleμ μ¬μ©ν΄μ import ν΄μΌ ν©λλ€.
// import x = require('[~THE MODULE~]');
//
// λν, --allowSyntheticDefaultImports λ
// --esModuleInterop μ΅μ
μ νμ±ννλ€λ©΄,
// default importλ‘ importν μ μμ΅λλ€:
// import x from '[~THE MODULE~]';
//
// ES6 λͺ¨λμ μ νμ λν μΌλ°μ μΈ ν΄κ²° λ°©λ²μ μ΄ν΄νλ €λ©΄
// https://www.typescriptlang.org/docs/handbook/modules.html#export--and-import--require
// μμ TypeScript λ¬Έμλ₯Ό μ°Έκ³ νμΈμ.
/*~ μ μ λ³μ 'myClassLib'μ λ
ΈμΆνλ UMD λͺ¨λμ
*~ λͺ¨λ λ‘λ νκ²½ μΈλΆμμ λ‘λνλ €λ©΄, μ¬κΈ°μμ μ μμΌλ‘ μ μΈνμΈμ.
*~ κ·Έλ μ§ μμΌλ©΄, μ΄ μ μΈμ μ κ±°νμΈμ.
*/
export as namespace myClassLib;
/*~ μ΄ μ μΈμ ν΄λμ€ μμ±μ ν¨μλ₯Ό
*~ νμΌμμ exportλ κ°μ²΄λ‘ μ§μ ν©λλ€.
*/
export = MyClass;
/*~ μ΄ ν΄λμ€μμ λͺ¨λ λ©μλμ νλ‘νΌν°λ₯Ό μ§μ ν©λλ€. */
declare class MyClass {
constructor(someParam?: string);
someProperty: string[];
myMethod(opts: MyClass.MyClassMethodOptions): number;
}
/*~ λͺ¨λμμ νμ
μ λ
ΈμΆνλ €λ©΄
*~ μ΄ λΈλ‘ μμ μμΉμν€μΈμ.
*~
*~ λ€μμ€νμ΄μ€λ₯Ό ν¬ν¨ν κ²½μ°,
*~ --esModuleInterop μ΄ μ€μ λμ΄ μμ§ μμΌλ©΄,
*~ λͺ¨λμ λ€μ μ€νμ΄μ€ κ°μ²΄λ‘ μλͺ» import ν μ μμ΅λλ€:
*~ import * as x from '[~THE MODULE~]'; // μ€λ₯! μ΄λ κ² νμ§ λ§μΈμ!
*/
declare namespace MyClass {
export interface MyClassMethodOptions {
width?: number;
height?: number;
}
}