8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

TypeScriptのtypeof import("...")とは

Last updated at Posted at 2022-01-12

この投稿ではTypeScriptのtypeof import("...")とは何かを説明します。

インポート型

import("...")は、TypeScriptで型レベルでモジュールを扱うための構文です。インポート型(import type)と呼ばれます。

インポート型の構文

typeof import("モジュール名")
typeof import("モジュール名").変数の識別子
import("モジュール名").型の識別子
import("モジュール名").型の識別子<型パラメータ>

モジュールの型

typeof import("module")はモジュール全体の型になります。typeof import("moulde")で得られる型には、import * as module from "module"でインポートした値が代入できます。

import * as module from "./module";

const a: typeof import("./module") = module; // OK

モジュールの型を満たしていれば、モジュールからインポートした値でなくても代入できます。

// module.ts
declare const a: string;
declare const b: number;
export { a };
export default b;

// useModule.ts
const a: typeof import("./module") = { a: "", default: 1 }; // OK
8
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?