mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-14 11:46:07 +00:00
15 lines
432 B
TypeScript
15 lines
432 B
TypeScript
export function isPrivateQaPluginSdkBuild(env: unknown): boolean;
|
|
export function evaluatePluginSdkDeclarationBudget({
|
|
declarationBytes,
|
|
buildPrivateQa,
|
|
}: {
|
|
declarationBytes: unknown;
|
|
buildPrivateQa: unknown;
|
|
}): {
|
|
budgetBytes: number;
|
|
budgetKind: string;
|
|
shouldFail: boolean;
|
|
};
|
|
export const MAX_PUBLIC_PLUGIN_SDK_DECLARATION_BYTES: 5100000;
|
|
export const MAX_PRIVATE_QA_PUBLIC_PLUGIN_SDK_DECLARATION_BYTES: 5125000;
|