tinacms
Version:
> The Fastest Way to Edit Next.js Content
12 lines (10 loc) • 411 B
TypeScript
/**
*/
import { Plugin } from '@tinacms/toolkit';
import type { CollectionResponse, DocumentSys } from '../types';
export declare class RouteMappingPlugin implements Plugin {
__type: string;
name: string;
mapper: (collection: CollectionResponse, document: DocumentSys) => string | undefined;
constructor(mapper: (collection: CollectionResponse, document: DocumentSys) => string | undefined);
}