Revert "Add yet-another-react-lightbox package and update .gitignore to exclude node_modules"
This reverts commit c92f4a5edd.
This commit is contained in:
16
frontend/node_modules/@svgr/babel-plugin-svg-dynamic-title/dist/index.d.ts
generated
vendored
Normal file
16
frontend/node_modules/@svgr/babel-plugin-svg-dynamic-title/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import { NodePath, types } from '@babel/core';
|
||||
|
||||
type tag = 'title' | 'desc';
|
||||
interface Options {
|
||||
tag: tag | null;
|
||||
}
|
||||
interface State {
|
||||
opts: Options;
|
||||
}
|
||||
declare const plugin: () => {
|
||||
visitor: {
|
||||
JSXElement(path: NodePath<types.JSXElement>, state: State): void;
|
||||
};
|
||||
};
|
||||
|
||||
export { Options, plugin as default };
|
||||
Reference in New Issue
Block a user