UNPKG

pg-node-migrations

Version:

Based on the work on ThomWright's postgres migration package. Adds the ability to specify a schema and table name.

8 lines (7 loc) 188 B
import { FileType } from "./types"; export interface FileInfo { id: number; name: string; type: FileType; } export declare const parseFileName: (fileName: string) => FileInfo;