js2ts: util.ts 분리

This commit is contained in:
2021-08-21 20:45:10 +09:00
parent edbe8e3561
commit f23ebcdc2d
16 changed files with 56 additions and 86 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
import { Nullable, NotNullExpected } from "../util";
import { Nullable } from "./Nullable";
import { NotNullExpected } from "./NotNullExpected";
export function unwrap_any<T>(result: Nullable<unknown>): T {