mirror of
https://github.com/strapi/strapi.git
synced 2025-07-12 11:31:38 +00:00

* chore: initiate moving CM to own package * chore: refactor to handle routes * chore: init review-workflows-package * chore: fix build * chore: refactor review-workflows fe * chore: fix unit suite * chore: spelling mistake Co-authored-by: Jamie Howard <48524071+jhoward1994@users.noreply.github.com> --------- Co-authored-by: Jamie Howard <48524071+jhoward1994@users.noreply.github.com>
11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
/* eslint-disable import/no-default-export */
|
|
declare module '*.png' {
|
|
const value: any;
|
|
export default value;
|
|
}
|
|
|
|
declare module '*.svg' {
|
|
const value: any;
|
|
export default value;
|
|
}
|