ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
4 lines • 347 B
TypeScript
import { RaRecord } from "../types.js";
export type LinkToFunctionType<RecordType extends RaRecord = RaRecord> = (record: RecordType, reference: string) => string | false | Promise<string | false>;
export type LinkToType<RecordType extends RaRecord = RaRecord> = string | false | LinkToFunctionType<RecordType>;
//# sourceMappingURL=types.d.ts.map