UNPKG

serializr

Version:

Serialize and deserialize complex object graphs to JSON

7 lines (6 loc) 224 B
import { ModelSchema } from "./types"; /** * Returns the standard model schema associated with a class / constructor function * */ export default function getDefaultModelSchema<T>(thing: any): ModelSchema<T> | undefined;