@types/serviceworker 0.0.52 → 0.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +190 -3
- package/iterable.d.ts +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
28
28
|
|
|
29
29
|
## Deploy Metadata
|
|
30
30
|
|
|
31
|
-
You can read what changed in version 0.0.
|
|
31
|
+
You can read what changed in version 0.0.54 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.54.
|
package/index.d.ts
CHANGED
|
@@ -846,6 +846,44 @@ declare var CacheStorage: {
|
|
|
846
846
|
new(): CacheStorage;
|
|
847
847
|
};
|
|
848
848
|
|
|
849
|
+
interface CanvasCompositing {
|
|
850
|
+
globalAlpha: number;
|
|
851
|
+
globalCompositeOperation: GlobalCompositeOperation;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
interface CanvasDrawImage {
|
|
855
|
+
drawImage(image: CanvasImageSource, dx: number, dy: number): void;
|
|
856
|
+
drawImage(image: CanvasImageSource, dx: number, dy: number, dw: number, dh: number): void;
|
|
857
|
+
drawImage(image: CanvasImageSource, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void;
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
interface CanvasDrawPath {
|
|
861
|
+
beginPath(): void;
|
|
862
|
+
clip(fillRule?: CanvasFillRule): void;
|
|
863
|
+
clip(path: Path2D, fillRule?: CanvasFillRule): void;
|
|
864
|
+
fill(fillRule?: CanvasFillRule): void;
|
|
865
|
+
fill(path: Path2D, fillRule?: CanvasFillRule): void;
|
|
866
|
+
isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean;
|
|
867
|
+
isPointInPath(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean;
|
|
868
|
+
isPointInStroke(x: number, y: number): boolean;
|
|
869
|
+
isPointInStroke(path: Path2D, x: number, y: number): boolean;
|
|
870
|
+
stroke(): void;
|
|
871
|
+
stroke(path: Path2D): void;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
interface CanvasFillStrokeStyles {
|
|
875
|
+
fillStyle: string | CanvasGradient | CanvasPattern;
|
|
876
|
+
strokeStyle: string | CanvasGradient | CanvasPattern;
|
|
877
|
+
createConicGradient(startAngle: number, x: number, y: number): CanvasGradient;
|
|
878
|
+
createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;
|
|
879
|
+
createPattern(image: CanvasImageSource, repetition: string | null): CanvasPattern | null;
|
|
880
|
+
createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
interface CanvasFilters {
|
|
884
|
+
filter: string;
|
|
885
|
+
}
|
|
886
|
+
|
|
849
887
|
/** An opaque object describing a gradient. It is returned by the methods CanvasRenderingContext2D.createLinearGradient() or CanvasRenderingContext2D.createRadialGradient(). */
|
|
850
888
|
interface CanvasGradient {
|
|
851
889
|
/**
|
|
@@ -861,6 +899,19 @@ declare var CanvasGradient: {
|
|
|
861
899
|
new(): CanvasGradient;
|
|
862
900
|
};
|
|
863
901
|
|
|
902
|
+
interface CanvasImageData {
|
|
903
|
+
createImageData(sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
904
|
+
createImageData(imagedata: ImageData): ImageData;
|
|
905
|
+
getImageData(sx: number, sy: number, sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
906
|
+
putImageData(imagedata: ImageData, dx: number, dy: number): void;
|
|
907
|
+
putImageData(imagedata: ImageData, dx: number, dy: number, dirtyX: number, dirtyY: number, dirtyWidth: number, dirtyHeight: number): void;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
interface CanvasImageSmoothing {
|
|
911
|
+
imageSmoothingEnabled: boolean;
|
|
912
|
+
imageSmoothingQuality: ImageSmoothingQuality;
|
|
913
|
+
}
|
|
914
|
+
|
|
864
915
|
interface CanvasPath {
|
|
865
916
|
arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void;
|
|
866
917
|
arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void;
|
|
@@ -871,6 +922,17 @@ interface CanvasPath {
|
|
|
871
922
|
moveTo(x: number, y: number): void;
|
|
872
923
|
quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;
|
|
873
924
|
rect(x: number, y: number, w: number, h: number): void;
|
|
925
|
+
roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | (number | DOMPointInit)[]): void;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
interface CanvasPathDrawingStyles {
|
|
929
|
+
lineCap: CanvasLineCap;
|
|
930
|
+
lineDashOffset: number;
|
|
931
|
+
lineJoin: CanvasLineJoin;
|
|
932
|
+
lineWidth: number;
|
|
933
|
+
miterLimit: number;
|
|
934
|
+
getLineDash(): number[];
|
|
935
|
+
setLineDash(segments: number[]): void;
|
|
874
936
|
}
|
|
875
937
|
|
|
876
938
|
/** An opaque object describing a pattern, based on an image, a canvas, or a video, created by the CanvasRenderingContext2D.createPattern() method. */
|
|
@@ -884,6 +946,49 @@ declare var CanvasPattern: {
|
|
|
884
946
|
new(): CanvasPattern;
|
|
885
947
|
};
|
|
886
948
|
|
|
949
|
+
interface CanvasRect {
|
|
950
|
+
clearRect(x: number, y: number, w: number, h: number): void;
|
|
951
|
+
fillRect(x: number, y: number, w: number, h: number): void;
|
|
952
|
+
strokeRect(x: number, y: number, w: number, h: number): void;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
interface CanvasShadowStyles {
|
|
956
|
+
shadowBlur: number;
|
|
957
|
+
shadowColor: string;
|
|
958
|
+
shadowOffsetX: number;
|
|
959
|
+
shadowOffsetY: number;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
interface CanvasState {
|
|
963
|
+
restore(): void;
|
|
964
|
+
save(): void;
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
interface CanvasText {
|
|
968
|
+
fillText(text: string, x: number, y: number, maxWidth?: number): void;
|
|
969
|
+
measureText(text: string): TextMetrics;
|
|
970
|
+
strokeText(text: string, x: number, y: number, maxWidth?: number): void;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
interface CanvasTextDrawingStyles {
|
|
974
|
+
direction: CanvasDirection;
|
|
975
|
+
font: string;
|
|
976
|
+
fontKerning: CanvasFontKerning;
|
|
977
|
+
textAlign: CanvasTextAlign;
|
|
978
|
+
textBaseline: CanvasTextBaseline;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
interface CanvasTransform {
|
|
982
|
+
getTransform(): DOMMatrix;
|
|
983
|
+
resetTransform(): void;
|
|
984
|
+
rotate(angle: number): void;
|
|
985
|
+
scale(x: number, y: number): void;
|
|
986
|
+
setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void;
|
|
987
|
+
setTransform(transform?: DOMMatrix2DInit): void;
|
|
988
|
+
transform(a: number, b: number, c: number, d: number, e: number, f: number): void;
|
|
989
|
+
translate(x: number, y: number): void;
|
|
990
|
+
}
|
|
991
|
+
|
|
887
992
|
/** The Client interface represents an executable context such as a Worker, or a SharedWorker. Window clients are represented by the more-specific WindowClient. You can get Client/WindowClient objects from methods such as Clients.matchAll() and Clients.get(). */
|
|
888
993
|
interface Client {
|
|
889
994
|
readonly frameType: FrameType;
|
|
@@ -1283,6 +1388,17 @@ interface EXT_texture_filter_anisotropic {
|
|
|
1283
1388
|
readonly TEXTURE_MAX_ANISOTROPY_EXT: GLenum;
|
|
1284
1389
|
}
|
|
1285
1390
|
|
|
1391
|
+
interface EXT_texture_norm16 {
|
|
1392
|
+
readonly R16_EXT: GLenum;
|
|
1393
|
+
readonly R16_SNORM_EXT: GLenum;
|
|
1394
|
+
readonly RG16_EXT: GLenum;
|
|
1395
|
+
readonly RG16_SNORM_EXT: GLenum;
|
|
1396
|
+
readonly RGB16_EXT: GLenum;
|
|
1397
|
+
readonly RGB16_SNORM_EXT: GLenum;
|
|
1398
|
+
readonly RGBA16_EXT: GLenum;
|
|
1399
|
+
readonly RGBA16_SNORM_EXT: GLenum;
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1286
1402
|
/** Events providing information related to errors in scripts or in files. */
|
|
1287
1403
|
interface ErrorEvent extends Event {
|
|
1288
1404
|
readonly colno: number;
|
|
@@ -1971,13 +2087,13 @@ declare var IDBObjectStore: {
|
|
|
1971
2087
|
};
|
|
1972
2088
|
|
|
1973
2089
|
interface IDBOpenDBRequestEventMap extends IDBRequestEventMap {
|
|
1974
|
-
"blocked":
|
|
2090
|
+
"blocked": IDBVersionChangeEvent;
|
|
1975
2091
|
"upgradeneeded": IDBVersionChangeEvent;
|
|
1976
2092
|
}
|
|
1977
2093
|
|
|
1978
2094
|
/** Also inherits methods from its parents IDBRequest and EventTarget. */
|
|
1979
2095
|
interface IDBOpenDBRequest extends IDBRequest<IDBDatabase> {
|
|
1980
|
-
onblocked: ((this: IDBOpenDBRequest, ev:
|
|
2096
|
+
onblocked: ((this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any) | null;
|
|
1981
2097
|
onupgradeneeded: ((this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any) | null;
|
|
1982
2098
|
addEventListener<K extends keyof IDBOpenDBRequestEventMap>(type: K, listener: (this: IDBOpenDBRequest, ev: IDBOpenDBRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1983
2099
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -2303,6 +2419,16 @@ declare var NotificationEvent: {
|
|
|
2303
2419
|
new(type: string, eventInitDict: NotificationEventInit): NotificationEvent;
|
|
2304
2420
|
};
|
|
2305
2421
|
|
|
2422
|
+
interface OES_draw_buffers_indexed {
|
|
2423
|
+
blendEquationSeparateiOES(buf: GLuint, modeRGB: GLenum, modeAlpha: GLenum): void;
|
|
2424
|
+
blendEquationiOES(buf: GLuint, mode: GLenum): void;
|
|
2425
|
+
blendFuncSeparateiOES(buf: GLuint, srcRGB: GLenum, dstRGB: GLenum, srcAlpha: GLenum, dstAlpha: GLenum): void;
|
|
2426
|
+
blendFunciOES(buf: GLuint, src: GLenum, dst: GLenum): void;
|
|
2427
|
+
colorMaskiOES(buf: GLuint, r: GLboolean, g: GLboolean, b: GLboolean, a: GLboolean): void;
|
|
2428
|
+
disableiOES(target: GLenum, index: GLuint): void;
|
|
2429
|
+
enableiOES(target: GLenum, index: GLuint): void;
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2306
2432
|
/** The OES_element_index_uint extension is part of the WebGL API and adds support for gl.UNSIGNED_INT types to WebGLRenderingContext.drawElements(). */
|
|
2307
2433
|
interface OES_element_index_uint {
|
|
2308
2434
|
}
|
|
@@ -2348,10 +2474,57 @@ interface OVR_multiview2 {
|
|
|
2348
2474
|
readonly MAX_VIEWS_OVR: GLenum;
|
|
2349
2475
|
}
|
|
2350
2476
|
|
|
2351
|
-
|
|
2477
|
+
interface OffscreenCanvasEventMap {
|
|
2478
|
+
"contextlost": Event;
|
|
2479
|
+
"contextrestored": Event;
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2352
2482
|
interface OffscreenCanvas extends EventTarget {
|
|
2483
|
+
/**
|
|
2484
|
+
* These attributes return the dimensions of the OffscreenCanvas object's bitmap.
|
|
2485
|
+
*
|
|
2486
|
+
* They can be set, to replace the bitmap with a new, transparent black bitmap of the specified dimensions (effectively resizing it).
|
|
2487
|
+
*/
|
|
2488
|
+
height: number;
|
|
2489
|
+
oncontextlost: ((this: OffscreenCanvas, ev: Event) => any) | null;
|
|
2490
|
+
oncontextrestored: ((this: OffscreenCanvas, ev: Event) => any) | null;
|
|
2491
|
+
/**
|
|
2492
|
+
* These attributes return the dimensions of the OffscreenCanvas object's bitmap.
|
|
2493
|
+
*
|
|
2494
|
+
* They can be set, to replace the bitmap with a new, transparent black bitmap of the specified dimensions (effectively resizing it).
|
|
2495
|
+
*/
|
|
2496
|
+
width: number;
|
|
2497
|
+
/**
|
|
2498
|
+
* Returns an object that exposes an API for drawing on the OffscreenCanvas object. contextId specifies the desired API: "2d", "bitmaprenderer", "webgl", or "webgl2". options is handled by that API.
|
|
2499
|
+
*
|
|
2500
|
+
* This specification defines the "2d" context below, which is similar but distinct from the "2d" context that is created from a canvas element. The WebGL specifications define the "webgl" and "webgl2" contexts. [WEBGL]
|
|
2501
|
+
*
|
|
2502
|
+
* Returns null if the canvas has already been initialized with another context type (e.g., trying to get a "2d" context after getting a "webgl" context).
|
|
2503
|
+
*/
|
|
2504
|
+
getContext(contextId: OffscreenRenderingContextId, options?: any): OffscreenRenderingContext | null;
|
|
2505
|
+
/** Returns a newly created ImageBitmap object with the image in the OffscreenCanvas object. The image in the OffscreenCanvas object is replaced with a new blank image. */
|
|
2506
|
+
transferToImageBitmap(): ImageBitmap;
|
|
2507
|
+
addEventListener<K extends keyof OffscreenCanvasEventMap>(type: K, listener: (this: OffscreenCanvas, ev: OffscreenCanvasEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
2508
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
2509
|
+
removeEventListener<K extends keyof OffscreenCanvasEventMap>(type: K, listener: (this: OffscreenCanvas, ev: OffscreenCanvasEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
2510
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
2353
2511
|
}
|
|
2354
2512
|
|
|
2513
|
+
declare var OffscreenCanvas: {
|
|
2514
|
+
prototype: OffscreenCanvas;
|
|
2515
|
+
new(width: number, height: number): OffscreenCanvas;
|
|
2516
|
+
};
|
|
2517
|
+
|
|
2518
|
+
interface OffscreenCanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform {
|
|
2519
|
+
readonly canvas: OffscreenCanvas;
|
|
2520
|
+
commit(): void;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
declare var OffscreenCanvasRenderingContext2D: {
|
|
2524
|
+
prototype: OffscreenCanvasRenderingContext2D;
|
|
2525
|
+
new(): OffscreenCanvasRenderingContext2D;
|
|
2526
|
+
};
|
|
2527
|
+
|
|
2355
2528
|
/** This Canvas 2D API interface is used to declare a path that can then be used on a CanvasRenderingContext2D object. The path methods of the CanvasRenderingContext2D interface are also present on this interface, which gives you the convenience of being able to retain and replay your path whenever desired. */
|
|
2356
2529
|
interface Path2D extends CanvasPath {
|
|
2357
2530
|
/** Adds to the path the path given by the argument. */
|
|
@@ -5618,6 +5791,7 @@ type ImageBitmapSource = CanvasImageSource | Blob | ImageData;
|
|
|
5618
5791
|
type Int32List = Int32Array | GLint[];
|
|
5619
5792
|
type MessageEventSource = MessagePort | ServiceWorker;
|
|
5620
5793
|
type NamedCurve = string;
|
|
5794
|
+
type OffscreenRenderingContext = OffscreenCanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext | WebGL2RenderingContext;
|
|
5621
5795
|
type OnErrorEventHandler = OnErrorEventHandlerNonNull | null;
|
|
5622
5796
|
type PerformanceEntryList = PerformanceEntry[];
|
|
5623
5797
|
type PushMessageDataInit = BufferSource | string;
|
|
@@ -5632,6 +5806,16 @@ type Uint32List = Uint32Array | GLuint[];
|
|
|
5632
5806
|
type VibratePattern = number | number[];
|
|
5633
5807
|
type XMLHttpRequestBodyInit = Blob | BufferSource | FormData | URLSearchParams | string;
|
|
5634
5808
|
type BinaryType = "arraybuffer" | "blob";
|
|
5809
|
+
type CanvasDirection = "inherit" | "ltr" | "rtl";
|
|
5810
|
+
type CanvasFillRule = "evenodd" | "nonzero";
|
|
5811
|
+
type CanvasFontKerning = "auto" | "none" | "normal";
|
|
5812
|
+
type CanvasFontStretch = "condensed" | "expanded" | "extra-condensed" | "extra-expanded" | "normal" | "semi-condensed" | "semi-expanded" | "ultra-condensed" | "ultra-expanded";
|
|
5813
|
+
type CanvasFontVariantCaps = "all-petite-caps" | "all-small-caps" | "normal" | "petite-caps" | "small-caps" | "titling-caps" | "unicase";
|
|
5814
|
+
type CanvasLineCap = "butt" | "round" | "square";
|
|
5815
|
+
type CanvasLineJoin = "bevel" | "miter" | "round";
|
|
5816
|
+
type CanvasTextAlign = "center" | "end" | "left" | "right" | "start";
|
|
5817
|
+
type CanvasTextBaseline = "alphabetic" | "bottom" | "hanging" | "ideographic" | "middle" | "top";
|
|
5818
|
+
type CanvasTextRendering = "auto" | "geometricPrecision" | "optimizeLegibility" | "optimizeSpeed";
|
|
5635
5819
|
type ClientTypes = "all" | "sharedworker" | "window" | "worker";
|
|
5636
5820
|
type ColorGamut = "p3" | "rec2020" | "srgb";
|
|
5637
5821
|
type ColorSpaceConversion = "default" | "none";
|
|
@@ -5641,12 +5825,14 @@ type FileSystemHandleKind = "directory" | "file";
|
|
|
5641
5825
|
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
|
|
5642
5826
|
type FontFaceSetLoadStatus = "loaded" | "loading";
|
|
5643
5827
|
type FrameType = "auxiliary" | "nested" | "none" | "top-level";
|
|
5828
|
+
type GlobalCompositeOperation = "color" | "color-burn" | "color-dodge" | "copy" | "darken" | "destination-atop" | "destination-in" | "destination-out" | "destination-over" | "difference" | "exclusion" | "hard-light" | "hue" | "lighten" | "lighter" | "luminosity" | "multiply" | "overlay" | "saturation" | "screen" | "soft-light" | "source-atop" | "source-in" | "source-out" | "source-over" | "xor";
|
|
5644
5829
|
type HdrMetadataType = "smpteSt2086" | "smpteSt2094-10" | "smpteSt2094-40";
|
|
5645
5830
|
type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
|
|
5646
5831
|
type IDBRequestReadyState = "done" | "pending";
|
|
5647
5832
|
type IDBTransactionDurability = "default" | "relaxed" | "strict";
|
|
5648
5833
|
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
|
|
5649
5834
|
type ImageOrientation = "flipY" | "none";
|
|
5835
|
+
type ImageSmoothingQuality = "high" | "low" | "medium";
|
|
5650
5836
|
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
|
|
5651
5837
|
type KeyType = "private" | "public" | "secret";
|
|
5652
5838
|
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
|
|
@@ -5655,6 +5841,7 @@ type MediaDecodingType = "file" | "media-source" | "webrtc";
|
|
|
5655
5841
|
type MediaEncodingType = "record" | "webrtc";
|
|
5656
5842
|
type NotificationDirection = "auto" | "ltr" | "rtl";
|
|
5657
5843
|
type NotificationPermission = "default" | "denied" | "granted";
|
|
5844
|
+
type OffscreenRenderingContextId = "2d" | "bitmaprenderer" | "webgl" | "webgl2" | "webgpu";
|
|
5658
5845
|
type PermissionName = "geolocation" | "notifications" | "persistent-storage" | "push" | "screen-wake-lock" | "xr-spatial-tracking";
|
|
5659
5846
|
type PermissionState = "denied" | "granted" | "prompt";
|
|
5660
5847
|
type PredefinedColorSpace = "display-p3" | "srgb";
|
package/iterable.d.ts
CHANGED
|
@@ -6,6 +6,14 @@ interface Cache {
|
|
|
6
6
|
addAll(requests: Iterable<RequestInfo>): Promise<void>;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
interface CanvasPath {
|
|
10
|
+
roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | Iterable<number | DOMPointInit>): void;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
interface CanvasPathDrawingStyles {
|
|
14
|
+
setLineDash(segments: Iterable<number>): void;
|
|
15
|
+
}
|
|
16
|
+
|
|
9
17
|
interface DOMStringList {
|
|
10
18
|
[Symbol.iterator](): IterableIterator<string>;
|
|
11
19
|
}
|