// This file was generated by a tool. Modifying it will produce unexpected behavior /** * @public */ export interface ISPCoreLibraryStrings { /** * {Locked}Error to show when the Environment class is initialized with an invalid EnvironmentType. */ 'invalidEnvironmentTypeError': string; /** * {Locked}Error to show when the Guid class fails to parse an invalid Guid. The {0} placeholder is the input guid string. */ 'invalidGuidStringError': string; /** * {Locked}Error to show when the Validate.isTrue() returns false. The {0} placeholder is the input's variable name. */ 'isFalseValidateError': string; /** * {Locked}Error to show when the Validate.isNotNullOrUndefined() is called on a null value. The {0} placeholder is the input's variable name. */ 'isNullValidateError': string; /** * {Locked}Error to show when the Validate.isNotNullOrUndefined() is called on an undefined value. The {0} placeholder is the input's variable name. */ 'isUndefinedValidateError': string; /** * {Locked}Error to show when the Validate.isNonemptyString() returns false. The {0} placeholder is the input's variable name. */ 'isEmptyStringValidateError': string; /** * {Locked}Error to show when the Validate.isNotDisposed() returns false. The {0} placeholder is the input's class name. */ 'isDisposedValidateError': string; /** * {Locked}Error to show when the Version class fails to parse an invalid Version string. The {0} placeholder is the input version string. */ 'invalidVersionStringError': string; /** * {Locked}Text used when logging a verbose level message. The {0} placeholder is the source of the log call. The {1} placeholder is the message to be logged. Example: "SomeComponent: VERBOSE The page finished loading" */ 'logVerboseLevelMessage': string; /** * {Locked}Text used when logging a info level message. The {0} placeholder is the source of the log call. The {1} placeholder is the message to be logged. Example: "SomeComponent: The page finished loading" */ 'logInfoLevelMessage': string; /** * {Locked}Text used when logging a warning level message. The {0} placeholder is the source of the log call. The {1} placeholder is the message to be logged. Example: "SomeComponent: WARNING The page finished loading" */ 'logWarningLevelMessage': string; /** * {Locked}Text used when logging a error level message. The {0} placeholder is the source of the log call. The {1} placeholder is the error's message. Example: "SomeComponent: ERROR The page finished loading" */ 'logErrorLevelMessage': string; /** * {Locked}Error to show when someone attempts to consume a ServiceScope service before the finish() function has been called */ 'serviceScopeConsumingBeforeFinished': string; /** * {Locked}The ServiceScope will automatically create a service if it hasn't been registered yet. During this process, the ServiceScope.consume() function may not be used. This is a safeguard to prevent errors due to a circular dependency. */ 'serviceScopeConsumingDuringAutoCreation': string; /** * {Locked}Error to show when someone attempts to call finish on the ServiceScope after it has finished. */ 'serviceScopeAlreadyFinishedError': string; /** * {Locked}After the ServiceScope.finish() function has been called, developers are no long allowed to call provide(). This is a safeguard to prevent mistakes. */ 'serviceScopeProvideServiceAfterFinishedError': string; /** * {Locked}Attempts to register the same service more than once. The {0} placeholder is the service key's name. */ 'serviceScopeProvideServiceThatAlreadyExists': string; /** * [Tag:ODSP-SPPPLAT-WebPartInfra]{Locked}Text used to label an optional nested error object. */ 'spErrorInnerErrorText': string; /** * [Tag:ODSP-SPPPLAT-WebPartInfra]{Locked}Text used to label the error's callstack. */ 'spErrorCallStackText': string; /** * [Tag:ODSP-SPPPLAT-WebPartInfra]{Locked}Text used to label the error's optional log properties object. */ 'spErrorLogPropertiesText': string; } /** * @public */ declare const strings: ISPCoreLibraryStrings; export default strings;