- 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
15 lines
218 B
TypeScript
15 lines
218 B
TypeScript
declare module '*.gif' {
|
|
const path: string;
|
|
export default path;
|
|
}
|
|
|
|
declare module '*.jpg' {
|
|
const path: string;
|
|
export default path;
|
|
}
|
|
|
|
declare module '*.png' {
|
|
const path: string;
|
|
export default path;
|
|
}
|