Initial commit with Advoware proxy

This commit is contained in:
root
2025-10-19 14:57:07 +00:00
commit 273aa8b549
45771 changed files with 5534555 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import JsonView, { defaultURLRegExp, JsonViewProps } from './components/json-view';
import { stringifyForCopying as stringify } from './utils';
import { ReactComponent as EditSVG } from './svgs/edit.svg';
import { ReactComponent as DeleteSVG } from './svgs/trash.svg';
import { ReactComponent as DoneSVG } from './svgs/done.svg';
import { ReactComponent as CancelSVG } from './svgs/cancel.svg';
import { ReactComponent as CopySVG } from './svgs/copy.svg';
import { ReactComponent as CopiedSVG } from './svgs/copied.svg';
import { ReactComponent as LinkSVG } from './svgs/link.svg';
export { JsonView as default, stringify, defaultURLRegExp, EditSVG, DeleteSVG, DoneSVG, CancelSVG, CopySVG, CopiedSVG, LinkSVG };
export type { JsonViewProps };