Files
story-studio/remotion/node_modules/@remotion/renderer/dist/options/enable-lambda-insights.d.ts
2026-02-21 10:33:18 +01:00

16 lines
418 B
TypeScript

export declare const enableLambdaInsights: {
name: string;
cliFlag: "enable-lambda-insights";
description: () => import("react/jsx-runtime").JSX.Element;
ssrName: string;
docLink: string;
type: boolean;
setConfig: (value: boolean) => void;
getValue: ({ commandLine }: {
commandLine: Record<string, unknown>;
}) => {
value: boolean;
source: string;
};
};