diff --git a/packages/types-dev/objects.d.ts b/packages/types-dev/objects.d.ts index 6e141570ae..0448096eb0 100644 --- a/packages/types-dev/objects.d.ts +++ b/packages/types-dev/objects.d.ts @@ -797,6 +797,15 @@ declare global { ignoreVersion?: string; /** Sentry and other plugins */ plugins?: { [pluginName: string]: Record }; + /** Rules blocks for Javascript rules */ + javascriptRules?: { + /** Translations */ + i18n?: boolean | Record> | Record; + /** Where to load the blocks */ + url: string; + /** Blocks names */ + name: string; + }; // Make it possible to narrow the object type using the custom property custom?: undefined;