mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-23 21:17:30 +00:00
8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
import { LoaderContext } from 'webpack';
|
|
|
|
declare function load(this: LoaderContext<{
|
|
unpluginName: string;
|
|
}>, source: string, map: any): Promise<void>;
|
|
|
|
export { load as default };
|