UNPKG

typeorm-plus-fixtures-cli

Version:

This is a fork of [typeorm-fixtures](https://github.com/RobinCK/typeorm-fixtures)

18 lines (17 loc) 362 B
import { IParser } from '../interface'; export declare class FakerParser implements IParser { /** * @type {number} */ priority: number; /** * @param {string} value * @return {boolean} */ isSupport(value: string): boolean; /** * @param {string} value * @return {any} */ parse(value: string): any; }