source: frontend/node_modules/es-shim-unscopables/index.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

  • Property mode set to 100644
File size: 261 bytes
Line 
1type Unscopableable = string & {
2 [K in keyof typeof Array.prototype]:
3 typeof Array.prototype[K] extends Function ? K : never
4 }[keyof typeof Array.prototype];
5
6declare function shimUnscopables(method: Unscopableable): void;
7
8export = shimUnscopables;
Note: See TracBrowser for help on using the repository browser.