// This file was generated by a tool. Modifying it will produce unexpected behavior /** * @public */ export interface IDebugPromptStrings { /** * The title of a dialog prompting the user if they want to allow potentially unsafe debug scripts. */ 'allowDebugManifestsTitle': string; /** * The title of a dialog prompting the user if they want to allow a potentially unsafe debug loader. */ 'allowDebugLoaderTitle': string; /** * The title of a dialog prompting the user if they want to allow a potentially unsafe debug loader and potentially unsafe debug scripts. */ 'allowDebugLoaderAndManifestsTitle': string; /** * A warning to show to the user when they're attempting to load debug scripts. */ 'debugManifestLoadingWarning': string; /** * A warning to show to the user when they're attempting to load debug scripts. {0} is placeholder for "cancel" button as given by debugManifestLoadingCancel */ 'debugManifestLoadingWarning2': string; /** * Button label shown for proceeding the unsafe scripts loading despite warning */ 'debugManifestLoadingConfirm': string; /** * Button label shown for declining the unsafe scripts loading during warning */ 'debugManifestLoadingCancel': string; /** * Text on a callout below the button with the "debugManifestLoadingCancel" label telling the user to err on the side of caution if they don't know what the debug manfiest prompt is for. */ 'debugManifestLoadingCalloutText': string; } /** * @public */ declare const strings: IDebugPromptStrings; export default strings;