typesNullable이 페이지에서Nullable 제네릭 타입으로 넣어준 타입과 더불어 null을 허용하는 타입입니다. Interface typescripttype Nullable<T> = T | null; Usage typescriptimport { Nullable } from '@modern-kit/types';type Test = Nullable<string>; // string | nullconst test: Nullable<string> = 'test';const test2: Nullable<string> = null;