- Fix router import path in main.js - Handle Django REST Framework pagination format in API calls - Add getTemplates function to project API - Restart frontend development server
9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
import { PluginFunc } from 'dayjs/esm'
|
|
|
|
declare interface PluginOptions {
|
|
parseTwoDigitYear?: (yearString: string) => number
|
|
}
|
|
|
|
declare const plugin: PluginFunc<PluginOptions>
|
|
export = plugin
|