@bjesuiter/serializr-helpers
Version:
Provides some helper functions and serialization PropertySchemas for mobxjs/serializr - library
11 lines (10 loc) • 345 B
TypeScript
import { Moment } from "moment";
export declare const demoProp: string;
export declare const demoArray: string[];
export declare const demoMomentString = "2019-06-10T08:50:23.559+02:00";
export declare const demoMoment: Moment;
export declare class SerializrHelperModel {
demoMoment: Moment;
demoProp: string;
demoArray: string[];
}