hud-sdk
Version:
Hud's Node SDK
41 lines (36 loc) • 1.21 kB
TypeScript
// Generated by dts-bundle-generator v9.5.1
import { z } from 'zod';
declare const HudPluginOptionsZ: z.ZodObject<{
accessToken: z.ZodString;
silent: z.ZodOptional<z.ZodBoolean>;
verbose: z.ZodOptional<z.ZodBoolean>;
apiEndpoint: z.ZodOptional<z.ZodString>;
cleanupTempSourceMaps: z.ZodOptional<z.ZodBoolean>;
projectDir: z.ZodOptional<z.ZodString>;
initFilePath: z.ZodOptional<z.ZodString>;
distDir: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
accessToken: string;
silent?: boolean | undefined;
verbose?: boolean | undefined;
apiEndpoint?: string | undefined;
cleanupTempSourceMaps?: boolean | undefined;
projectDir?: string | undefined;
initFilePath?: string | undefined;
distDir?: string | undefined;
}, {
accessToken: string;
silent?: boolean | undefined;
verbose?: boolean | undefined;
apiEndpoint?: string | undefined;
cleanupTempSourceMaps?: boolean | undefined;
projectDir?: string | undefined;
initFilePath?: string | undefined;
distDir?: string | undefined;
}>;
export type HudPluginOptions = z.infer<typeof HudPluginOptionsZ>;
export declare function withHud(nextConfig: any, hudOptions: HudPluginOptions): any;
export {
withHud as default,
};
export {};