diff --git a/types/event-calendar__core/event-calendar__core-tests.ts b/types/event-calendar__core/event-calendar__core-tests.ts index 447ffb423015a4..373466a71567d7 100644 --- a/types/event-calendar__core/event-calendar__core-tests.ts +++ b/types/event-calendar__core/event-calendar__core-tests.ts @@ -47,6 +47,7 @@ cal.removeEventById(345) end: new Date(Date.now() + 2 * 60 * 60 * 1000), }); cal.refetchEvents(); +cal.refetchResources(); cal.dateFromPoint(0, 0); cal.getView(); cal.next(); @@ -136,6 +137,7 @@ cal = createCalendar(target, plugins, { click: () => undefined, }, }, + customScrollbars: true, date: "1997-04-12", dateClick: (_info: Calendar.DateClickInfo) => {}, datesAboveResources: false, @@ -205,18 +207,22 @@ cal = createCalendar(target, plugins, { height: "100%", hiddenDays: [2], highlightedDates: ["2024-01-01", new Date()], + icons: { collapse: { html: "−" }, expand: { html: "+" } }, lazyFetching: true, listDayFormat: dateFormat, listDaySideFormat: dateFormat, loading: (_isLoading: boolean) => {}, locale: "en-US", longPressDelay: 100, + monthHeaderFormat: { month: "long" }, moreLinkContent: "content", noEventsClick: (_info: Calendar.NoEventsClickInfo) => {}, noEventsContent: "content", nowIndicator: true, pointer: true, + refetchResourcesOnNavigate: true, resizeConstraint: (_info: Calendar.EventResizeInfo) => true, + resourceExpand: (_info: Calendar.ResourceExpandInfo) => {}, resources: [{ id: "foo" }, { id: "bar", extendedProps: { fred: "barney" } }], resourceLabelContent: "content", resourceLabelDidMount: (_info: Calendar.ResourceDidMountInfo) => {}, @@ -237,6 +243,7 @@ cal = createCalendar(target, plugins, { slotMinTime: 300, slotMaxTime: "04:00:00", slotWidth: 100, + snapDuration: 200, theme: defaultTheme, titleFormat: dateFormat, unselect: (_info: Calendar.UnselectInfo) => {}, @@ -275,8 +282,10 @@ cal.setOption("buttonText", () => { }) .setOption("eventTimeFormat", (_start: Date, _end: Date) => "content") .setOption("flexibleSlotTimeLimits", { eventFilter: (_ev: Calendar.Event) => false }) + .setOption("icons", (_icons: Calendar.Icons) => ({ expand: "content" })) .setOption("listDayFormat", (_d: Date) => "content") .setOption("listDaySideFormat", (_d: Date) => "content") + .setOption("monthHeaderFormat", (_date: Date) => "content") .setOption("moreLinkContent", (_info: Calendar.MoreLinkInfo) => "content") .setOption("noEventsContent", () => "content") .setOption("resourceLabelContent", (_info: Calendar.ResourceLabelInfo) => "content") diff --git a/types/event-calendar__core/index.d.ts b/types/event-calendar__core/index.d.ts index 28e18773568899..1173ee7324576b 100644 --- a/types/event-calendar__core/index.d.ts +++ b/types/event-calendar__core/index.d.ts @@ -27,6 +27,7 @@ export interface Calendar { removeEventById(id: number | string): Calendar; updateEvent(event: Calendar.Event | Calendar.EventInput): Calendar; refetchEvents(): Calendar; + refetchResources(): Calendar; dateFromPoint(x: number, y: number): Calendar.DateClickInfo | null; getView(): Calendar.View; next(): Calendar; @@ -59,6 +60,10 @@ export namespace Calendar { [key: string]: CustomButton; } + interface Icons { + [key: string]: Content; + } + interface View { type: string; title: string; @@ -224,6 +229,12 @@ export namespace Calendar { view: View; } + interface ResourceExpandInfo { + resource: Resource; + jsEvent: DomEvent; + view: View; + } + interface ResourceLabelInfo { resource: Resource; date: Date; @@ -312,6 +323,7 @@ export namespace Calendar { buttonText?: ButtonTextMapping | ((text: ButtonTextMapping) => ButtonTextMapping); columnWidth?: cssLength; customButtons?: CustomButtons | ((customButtons: CustomButtons) => CustomButtons); + customScrollbars?: boolean; date?: Date | string | undefined; dateClick?: (info: DateClickInfo) => void; datesAboveResources?: boolean; @@ -364,18 +376,22 @@ export namespace Calendar { height?: string; hiddenDays?: dayOfWeek[]; highlightedDates?: Array; + icons?: Icons | ((icons: Icons) => Icons); lazyFetching?: boolean; listDayFormat?: Intl.DateTimeFormatOptions | ((d: Date) => Content); listDaySideFormat?: Intl.DateTimeFormatOptions | ((d: Date) => Content); loading?: (isLoading: boolean) => void; locale?: string; longPressDelay?: number; + monthHeaderFormat?: Intl.DateTimeFormatOptions | ((date: Date) => Content); moreLinkContent?: Content | ((info: MoreLinkInfo) => Content); noEventsClick?: (info: NoEventsClickInfo) => void; noEventsContent?: Content | (() => Content); nowIndicator?: boolean; pointer?: boolean; + refetchResourcesOnNavigate?: boolean; resizeConstraint?: (info: EventResizeInfo) => boolean; + resourceExpand?: (info: ResourceExpandInfo) => void; resources?: ResourceInput[]; resourceLabelContent?: Content | ((info: ResourceLabelInfo) => Content); resourceLabelDidMount?: (info: ResourceDidMountInfo) => void; @@ -394,6 +410,7 @@ export namespace Calendar { slotMaxTime?: DurationInput; slotMinTime?: DurationInput; slotWidth?: number; + snapDuration?: DurationInput; theme?: Theme | ((theme: Theme) => Theme); titleFormat?: Intl.DateTimeFormatOptions | ((start: Date, end: Date) => Content); unselect?: (info: UnselectInfo) => void; diff --git a/types/event-calendar__core/package.json b/types/event-calendar__core/package.json index ac433f602978d9..ec6b13ede7fa2a 100644 --- a/types/event-calendar__core/package.json +++ b/types/event-calendar__core/package.json @@ -2,7 +2,7 @@ "private": true, "type": "module", "name": "@types/event-calendar__core", - "version": "5.0.9999", + "version": "5.5.9999", "projects": [ "https://vkurko.github.io/calendar/" ], diff --git a/types/k6/package.json b/types/k6/package.json index 3c61bef41e7a32..11a69d37c83254 100644 --- a/types/k6/package.json +++ b/types/k6/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@types/k6", - "version": "1.6.9999", + "version": "1.7.9999", "type": "module", "projects": [ "https://grafana.com/docs/k6/latest/" @@ -58,6 +58,10 @@ { "name": "Agnès Toulet", "githubUsername": "AgnesToulet" + }, + { + "name": "Iván Szkiba", + "githubUsername": "szkiba" } ] } diff --git a/types/mssql/index.d.ts b/types/mssql/index.d.ts index 0e4284422cb004..3bd93e0fff61b8 100644 --- a/types/mssql/index.d.ts +++ b/types/mssql/index.d.ts @@ -216,28 +216,27 @@ export interface config { beforeConnect?: ((conn: Connection) => void) | undefined; } -export declare enum MSSQL_ERROR_CODE { - ELOGIN = "ELOGIN", - ETIMEOUT = "ETIMEOUT", - EDRIVER = "EDRIVER", - EALREADYCONNECTED = "EALREADYCONNECTED", - EALREADYCONNECTING = "EALREADYCONNECTING", - ENOTOPEN = "ENOTOPEN", - EINSTLOOKUP = "EINSTLOOKUP", - ESOCKET = "ESOCKET", - ECONNCLOSED = "ECONNCLOSED", - ENOTBEGUN = "ENOTBEGUN", - EALREADYBEGUN = "EALREADYBEGUN", - EREQINPROG = "EREQINPROG", - EABORT = "EABORT", - EREQUEST = "EREQUEST", - ECANCEL = "ECANCEL", - EARGS = "EARGS", - EINJECT = "EINJECT", - ENOCONN = "ENOCONN", - EALREADYPREPARED = "EALREADYPREPARED", - ENOTPREPARED = "ENOTPREPARED", -} +export type MSSQL_ERROR_CODE = + | "ELOGIN" + | "ETIMEOUT" + | "EDRIVER" + | "EALREADYCONNECTED" + | "EALREADYCONNECTING" + | "ENOTOPEN" + | "EINSTLOOKUP" + | "ESOCKET" + | "ECONNCLOSED" + | "ENOTBEGUN" + | "EALREADYBEGUN" + | "EREQINPROG" + | "EABORT" + | "EREQUEST" + | "ECANCEL" + | "EARGS" + | "EINJECT" + | "ENOCONN" + | "EALREADYPREPARED" + | "ENOTPREPARED"; export declare class MSSQLError extends Error { constructor(message: Error | string, code?: MSSQL_ERROR_CODE); diff --git a/types/mssql/mssql-tests.ts b/types/mssql/mssql-tests.ts index ddd53317929d17..73944cd0087b73 100644 --- a/types/mssql/mssql-tests.ts +++ b/types/mssql/mssql-tests.ts @@ -320,11 +320,11 @@ function test_mssql_errors() { // Test constructors const sqlDriverError = new Error("mock error"); const mssqlStringError = new sql.MSSQLError("Something went wrong"); - const baseMSSQLError = new sql.MSSQLError(sqlDriverError, sql.MSSQL_ERROR_CODE.EREQUEST); - const connectionError = new sql.ConnectionError(sqlDriverError, sql.MSSQL_ERROR_CODE.ELOGIN); - const requestError = new sql.RequestError(sqlDriverError, sql.MSSQL_ERROR_CODE.EREQUEST); - const preparedStatementError = new sql.PreparedStatementError(sqlDriverError, sql.MSSQL_ERROR_CODE.EINJECT); - const transactionError = new sql.TransactionError(sqlDriverError, sql.MSSQL_ERROR_CODE.EABORT); + const baseMSSQLError = new sql.MSSQLError(sqlDriverError, "EREQUEST"); + const connectionError = new sql.ConnectionError(sqlDriverError, "ELOGIN"); + const requestError = new sql.RequestError(sqlDriverError, "EREQUEST"); + const preparedStatementError = new sql.PreparedStatementError(sqlDriverError, "EINJECT"); + const transactionError = new sql.TransactionError(sqlDriverError, "EABORT"); // Test inheritance if ( diff --git a/types/office-js-preview/index.d.ts b/types/office-js-preview/index.d.ts index bcd553cce6be61..3b59edf6dbc5f6 100644 --- a/types/office-js-preview/index.d.ts +++ b/types/office-js-preview/index.d.ts @@ -106374,14 +106374,14 @@ declare namespace Word { */ appearance: Word.ContentControlAppearance | "BoundingBox" | "Tags" | "Hidden"; /** - * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. + * Specifies whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. * * @remarks * [Api set: WordApi 1.1] */ cannotDelete: boolean; /** - * Specifies a value that indicates whether the user can edit the contents of the content control. + * Specifies whether the user can edit the contents of the content control. * * @remarks * [Api set: WordApi 1.1] @@ -106409,7 +106409,7 @@ declare namespace Word { */ placeholderText: string; /** - * Specifies a value that indicates whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. + * Specifies whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. * * @remarks * [Api set: WordApi 1.1] @@ -107377,7 +107377,7 @@ declare namespace Word { */ schemaCollection: Word.CustomXmlSchemaCollection; /** - * Gets a value that indicates whether the `CustomXmlPart` is built-in. + * Gets whether the `CustomXmlPart` is built-in. * * @remarks * [Api set: WordApiDesktop 1.3] @@ -111784,7 +111784,7 @@ declare namespace Word { */ readonly imageFormat: Word.ImageFormat | "Unsupported" | "Undefined" | "Bmp" | "Jpeg" | "Gif" | "Tiff" | "Png" | "Icon" | "Exif" | "Wmf" | "Emf" | "Pict" | "Pdf" | "Svg"; /** - * Specifies a value that indicates whether the inline image retains its original proportions when you resize it. + * Specifies whether the inline image retains its original proportions when you resize it. * * @remarks * [Api set: WordApi 1.1] @@ -144294,7 +144294,7 @@ declare namespace Word { */ interface SelectionInsertSymbolOptions { /** - * If provided, specifies the font bias for symbols. This argument is useful for setting the correct font bias for East Asian characters. The default value is `default`. + * If provided, specifies the font bias for symbols. This argument is useful for setting the correct font bias for East Asian characters. The default value is `standard`. * * @remarks * [Api set: WordApiDesktop 1.4] @@ -149464,14 +149464,14 @@ declare namespace Word { */ appearance?: Word.ContentControlAppearance | "BoundingBox" | "Tags" | "Hidden"; /** - * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. + * Specifies whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. * * @remarks * [Api set: WordApi 1.1] */ cannotDelete?: boolean; /** - * Specifies a value that indicates whether the user can edit the contents of the content control. + * Specifies whether the user can edit the contents of the content control. * * @remarks * [Api set: WordApi 1.1] @@ -149492,7 +149492,7 @@ declare namespace Word { */ placeholderText?: string; /** - * Specifies a value that indicates whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. + * Specifies whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. * * @remarks * [Api set: WordApi 1.1] @@ -150727,7 +150727,7 @@ declare namespace Word { */ hyperlink?: string; /** - * Specifies a value that indicates whether the inline image retains its original proportions when you resize it. + * Specifies whether the inline image retains its original proportions when you resize it. * * @remarks * [Api set: WordApi 1.1] @@ -155942,14 +155942,14 @@ declare namespace Word { */ appearance?: Word.ContentControlAppearance | "BoundingBox" | "Tags" | "Hidden"; /** - * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. + * Specifies whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. * * @remarks * [Api set: WordApi 1.1] */ cannotDelete?: boolean; /** - * Specifies a value that indicates whether the user can edit the contents of the content control. + * Specifies whether the user can edit the contents of the content control. * * @remarks * [Api set: WordApi 1.1] @@ -155977,7 +155977,7 @@ declare namespace Word { */ placeholderText?: string; /** - * Specifies a value that indicates whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. + * Specifies whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. * * @remarks * [Api set: WordApi 1.1] @@ -156125,7 +156125,7 @@ declare namespace Word { */ schemaCollection?: Word.Interfaces.CustomXmlSchemaData[]; /** - * Gets a value that indicates whether the `CustomXmlPart` is built-in. + * Gets whether the `CustomXmlPart` is built-in. * * @remarks * [Api set: WordApiDesktop 1.3] @@ -157716,7 +157716,7 @@ declare namespace Word { */ imageFormat?: Word.ImageFormat | "Unsupported" | "Undefined" | "Bmp" | "Jpeg" | "Gif" | "Tiff" | "Png" | "Icon" | "Exif" | "Wmf" | "Emf" | "Pict" | "Pdf" | "Svg"; /** - * Specifies a value that indicates whether the inline image retains its original proportions when you resize it. + * Specifies whether the inline image retains its original proportions when you resize it. * * @remarks * [Api set: WordApi 1.1] @@ -165281,14 +165281,14 @@ declare namespace Word { */ appearance?: boolean; /** - * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. + * Specifies whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. * * @remarks * [Api set: WordApi 1.1] */ cannotDelete?: boolean; /** - * Specifies a value that indicates whether the user can edit the contents of the content control. + * Specifies whether the user can edit the contents of the content control. * * @remarks * [Api set: WordApi 1.1] @@ -165316,7 +165316,7 @@ declare namespace Word { */ placeholderText?: boolean; /** - * Specifies a value that indicates whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. + * Specifies whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. * * @remarks * [Api set: WordApi 1.1] @@ -165496,14 +165496,14 @@ declare namespace Word { */ appearance?: boolean; /** - * For EACH ITEM in the collection: Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. + * For EACH ITEM in the collection: Specifies whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. * * @remarks * [Api set: WordApi 1.1] */ cannotDelete?: boolean; /** - * For EACH ITEM in the collection: Specifies a value that indicates whether the user can edit the contents of the content control. + * For EACH ITEM in the collection: Specifies whether the user can edit the contents of the content control. * * @remarks * [Api set: WordApi 1.1] @@ -165531,7 +165531,7 @@ declare namespace Word { */ placeholderText?: boolean; /** - * For EACH ITEM in the collection: Specifies a value that indicates whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. + * For EACH ITEM in the collection: Specifies whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. * * @remarks * [Api set: WordApi 1.1] @@ -165738,7 +165738,7 @@ declare namespace Word { */ documentElement?: Word.Interfaces.CustomXmlNodeLoadOptions; /** - * Gets a value that indicates whether the `CustomXmlPart` is built-in. + * Gets whether the `CustomXmlPart` is built-in. * * @remarks * [Api set: WordApiDesktop 1.3] @@ -165785,7 +165785,7 @@ declare namespace Word { */ documentElement?: Word.Interfaces.CustomXmlNodeLoadOptions; /** - * For EACH ITEM in the collection: Gets a value that indicates whether the `CustomXmlPart` is built-in. + * For EACH ITEM in the collection: Gets whether the `CustomXmlPart` is built-in. * * @remarks * [Api set: WordApiDesktop 1.3] @@ -165832,7 +165832,7 @@ declare namespace Word { */ documentElement?: Word.Interfaces.CustomXmlNodeLoadOptions; /** - * For EACH ITEM in the collection: Gets a value that indicates whether the `CustomXmlPart` is built-in. + * For EACH ITEM in the collection: Gets whether the `CustomXmlPart` is built-in. * * @remarks * [Api set: WordApiDesktop 1.3] @@ -167760,7 +167760,7 @@ declare namespace Word { */ imageFormat?: boolean; /** - * Specifies a value that indicates whether the inline image retains its original proportions when you resize it. + * Specifies whether the inline image retains its original proportions when you resize it. * * @remarks * [Api set: WordApi 1.1] @@ -167870,7 +167870,7 @@ declare namespace Word { */ imageFormat?: boolean; /** - * For EACH ITEM in the collection: Specifies a value that indicates whether the inline image retains its original proportions when you resize it. + * For EACH ITEM in the collection: Specifies whether the inline image retains its original proportions when you resize it. * * @remarks * [Api set: WordApi 1.1] diff --git a/types/office-js/index.d.ts b/types/office-js/index.d.ts index 54786c69d1229a..6ebd0c61e0ab0a 100644 --- a/types/office-js/index.d.ts +++ b/types/office-js/index.d.ts @@ -99536,14 +99536,14 @@ declare namespace Word { */ appearance: Word.ContentControlAppearance | "BoundingBox" | "Tags" | "Hidden"; /** - * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. + * Specifies whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. * * @remarks * [Api set: WordApi 1.1] */ cannotDelete: boolean; /** - * Specifies a value that indicates whether the user can edit the contents of the content control. + * Specifies whether the user can edit the contents of the content control. * * @remarks * [Api set: WordApi 1.1] @@ -99571,7 +99571,7 @@ declare namespace Word { */ placeholderText: string; /** - * Specifies a value that indicates whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. + * Specifies whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. * * @remarks * [Api set: WordApi 1.1] @@ -100463,7 +100463,7 @@ declare namespace Word { */ schemaCollection: Word.CustomXmlSchemaCollection; /** - * Gets a value that indicates whether the `CustomXmlPart` is built-in. + * Gets whether the `CustomXmlPart` is built-in. * * @remarks * [Api set: WordApiDesktop 1.3] @@ -104622,7 +104622,7 @@ declare namespace Word { */ readonly imageFormat: Word.ImageFormat | "Unsupported" | "Undefined" | "Bmp" | "Jpeg" | "Gif" | "Tiff" | "Png" | "Icon" | "Exif" | "Wmf" | "Emf" | "Pict" | "Pdf" | "Svg"; /** - * Specifies a value that indicates whether the inline image retains its original proportions when you resize it. + * Specifies whether the inline image retains its original proportions when you resize it. * * @remarks * [Api set: WordApi 1.1] @@ -135499,7 +135499,7 @@ declare namespace Word { */ interface SelectionInsertSymbolOptions { /** - * If provided, specifies the font bias for symbols. This argument is useful for setting the correct font bias for East Asian characters. The default value is `default`. + * If provided, specifies the font bias for symbols. This argument is useful for setting the correct font bias for East Asian characters. The default value is `standard`. * * @remarks * [Api set: WordApiDesktop 1.4] @@ -140512,14 +140512,14 @@ declare namespace Word { */ appearance?: Word.ContentControlAppearance | "BoundingBox" | "Tags" | "Hidden"; /** - * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. + * Specifies whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. * * @remarks * [Api set: WordApi 1.1] */ cannotDelete?: boolean; /** - * Specifies a value that indicates whether the user can edit the contents of the content control. + * Specifies whether the user can edit the contents of the content control. * * @remarks * [Api set: WordApi 1.1] @@ -140540,7 +140540,7 @@ declare namespace Word { */ placeholderText?: string; /** - * Specifies a value that indicates whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. + * Specifies whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. * * @remarks * [Api set: WordApi 1.1] @@ -141775,7 +141775,7 @@ declare namespace Word { */ hyperlink?: string; /** - * Specifies a value that indicates whether the inline image retains its original proportions when you resize it. + * Specifies whether the inline image retains its original proportions when you resize it. * * @remarks * [Api set: WordApi 1.1] @@ -146919,14 +146919,14 @@ declare namespace Word { */ appearance?: Word.ContentControlAppearance | "BoundingBox" | "Tags" | "Hidden"; /** - * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. + * Specifies whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. * * @remarks * [Api set: WordApi 1.1] */ cannotDelete?: boolean; /** - * Specifies a value that indicates whether the user can edit the contents of the content control. + * Specifies whether the user can edit the contents of the content control. * * @remarks * [Api set: WordApi 1.1] @@ -146954,7 +146954,7 @@ declare namespace Word { */ placeholderText?: string; /** - * Specifies a value that indicates whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. + * Specifies whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. * * @remarks * [Api set: WordApi 1.1] @@ -147094,7 +147094,7 @@ declare namespace Word { */ schemaCollection?: Word.Interfaces.CustomXmlSchemaData[]; /** - * Gets a value that indicates whether the `CustomXmlPart` is built-in. + * Gets whether the `CustomXmlPart` is built-in. * * @remarks * [Api set: WordApiDesktop 1.3] @@ -148685,7 +148685,7 @@ declare namespace Word { */ imageFormat?: Word.ImageFormat | "Unsupported" | "Undefined" | "Bmp" | "Jpeg" | "Gif" | "Tiff" | "Png" | "Icon" | "Exif" | "Wmf" | "Emf" | "Pict" | "Pdf" | "Svg"; /** - * Specifies a value that indicates whether the inline image retains its original proportions when you resize it. + * Specifies whether the inline image retains its original proportions when you resize it. * * @remarks * [Api set: WordApi 1.1] @@ -156096,14 +156096,14 @@ declare namespace Word { */ appearance?: boolean; /** - * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. + * Specifies whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. * * @remarks * [Api set: WordApi 1.1] */ cannotDelete?: boolean; /** - * Specifies a value that indicates whether the user can edit the contents of the content control. + * Specifies whether the user can edit the contents of the content control. * * @remarks * [Api set: WordApi 1.1] @@ -156131,7 +156131,7 @@ declare namespace Word { */ placeholderText?: boolean; /** - * Specifies a value that indicates whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. + * Specifies whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. * * @remarks * [Api set: WordApi 1.1] @@ -156311,14 +156311,14 @@ declare namespace Word { */ appearance?: boolean; /** - * For EACH ITEM in the collection: Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. + * For EACH ITEM in the collection: Specifies whether the user can delete the content control. Mutually exclusive with `removeWhenEdited`. * * @remarks * [Api set: WordApi 1.1] */ cannotDelete?: boolean; /** - * For EACH ITEM in the collection: Specifies a value that indicates whether the user can edit the contents of the content control. + * For EACH ITEM in the collection: Specifies whether the user can edit the contents of the content control. * * @remarks * [Api set: WordApi 1.1] @@ -156346,7 +156346,7 @@ declare namespace Word { */ placeholderText?: boolean; /** - * For EACH ITEM in the collection: Specifies a value that indicates whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. + * For EACH ITEM in the collection: Specifies whether the content control is removed after it's edited. Mutually exclusive with `cannotDelete`. * * @remarks * [Api set: WordApi 1.1] @@ -156553,7 +156553,7 @@ declare namespace Word { */ documentElement?: Word.Interfaces.CustomXmlNodeLoadOptions; /** - * Gets a value that indicates whether the `CustomXmlPart` is built-in. + * Gets whether the `CustomXmlPart` is built-in. * * @remarks * [Api set: WordApiDesktop 1.3] @@ -156600,7 +156600,7 @@ declare namespace Word { */ documentElement?: Word.Interfaces.CustomXmlNodeLoadOptions; /** - * For EACH ITEM in the collection: Gets a value that indicates whether the `CustomXmlPart` is built-in. + * For EACH ITEM in the collection: Gets whether the `CustomXmlPart` is built-in. * * @remarks * [Api set: WordApiDesktop 1.3] @@ -156647,7 +156647,7 @@ declare namespace Word { */ documentElement?: Word.Interfaces.CustomXmlNodeLoadOptions; /** - * For EACH ITEM in the collection: Gets a value that indicates whether the `CustomXmlPart` is built-in. + * For EACH ITEM in the collection: Gets whether the `CustomXmlPart` is built-in. * * @remarks * [Api set: WordApiDesktop 1.3] @@ -158575,7 +158575,7 @@ declare namespace Word { */ imageFormat?: boolean; /** - * Specifies a value that indicates whether the inline image retains its original proportions when you resize it. + * Specifies whether the inline image retains its original proportions when you resize it. * * @remarks * [Api set: WordApi 1.1] @@ -158685,7 +158685,7 @@ declare namespace Word { */ imageFormat?: boolean; /** - * For EACH ITEM in the collection: Specifies a value that indicates whether the inline image retains its original proportions when you resize it. + * For EACH ITEM in the collection: Specifies whether the inline image retains its original proportions when you resize it. * * @remarks * [Api set: WordApi 1.1]