UNPKG

nitro-codegen

Version:

The code-generator for react-native-nitro-modules.

11 lines (10 loc) 411 B
import type { Language } from '../../getPlatformSpecs.js'; import type { SourceFile, SourceImport } from '../SourceFile.js'; import type { Type, TypeKind } from './Type.js'; export declare class DateType implements Type { get canBePassedByReference(): boolean; get kind(): TypeKind; getCode(language: Language): string; getExtraFiles(): SourceFile[]; getRequiredImports(): SourceImport[]; }