typeorm-plus-fixtures-cli
Version:
This is a fork of [typeorm-fixtures](https://github.com/RobinCK/typeorm-fixtures)
23 lines (22 loc) • 495 B
TypeScript
import { IFixture, IParser } from '../interface';
export declare class ParameterParser implements IParser {
/**
* @type {number}
*/
priority: number;
/**
* @type {RegExp}
*/
private readonly regExp;
/**
* @param {string} value
* @return {boolean}
*/
isSupport(value: string): boolean;
/**
* @param {string} value
* @param {IFixture} fixture
* @return {any}
*/
parse(value: string, fixture: IFixture): any;
}