Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.7 KiB
79 lines
1.7 KiB
1 year ago
|
/* eslint-disable no-redeclare */
|
||
|
|
||
|
declare namespace srcset {
|
||
|
interface SrcSetDefinition {
|
||
|
url: string;
|
||
|
width?: number;
|
||
|
density?: number;
|
||
|
}
|
||
|
|
||
|
interface Options {
|
||
|
/**
|
||
|
When strict mode is enabled, errors will be thrown on invalid input.
|
||
|
|
||
|
When disabled, a best effort will be made to handle invalid input and no errors will be thrown. The output may be invalid.
|
||
|
|
||
|
@default false
|
||
|
*/
|
||
|
strict?: boolean;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
declare const srcset: {
|
||
|
/**
|
||
|
Parse the HTML `<img>` [srcset](http://mobile.smashingmagazine.com/2013/08/21/webkit-implements-srcset-and-why-its-a-good-thing/) attribute.
|
||
|
|
||
|
Accepts a “srcset” string and returns an array of objects with the possible properties: `url` (always), `width`, `density`, and `height`.
|
||
|
|
||
|
@param srcset - A “srcset” string.
|
||
|
|
||
|
@example
|
||
|
```
|
||
|
import srcset = require('srcset');
|
||
|
|
||
|
console.log(srcset.parse('banner-HD.jpg 2x, banner-phone.jpg 100w'));
|
||
|
// [
|
||
|
// {
|
||
|
// url: 'banner-HD.jpg',
|
||
|
// density: 2
|
||
|
// },
|
||
|
// {
|
||
|
// url: 'banner-phone.jpg',
|
||
|
// width: 100
|
||
|
// }
|
||
|
// ]
|
||
|
```
|
||
|
*/
|
||
|
parse: (srcset: string, options?: srcset.Options) => srcset.SrcSetDefinition[];
|
||
|
|
||
|
/**
|
||
|
Stringify `SrcSetDefinition`s.
|
||
|
|
||
|
@param SrcSetDefinitions - Each object should have a `url` field and may have either `width` or `density`. When the `strict` option is `true`, only `width` or `density` is accepted.
|
||
|
|
||
|
@returns A “srcset” string.
|
||
|
|
||
|
@example
|
||
|
```
|
||
|
import srcset = require('srcset');
|
||
|
|
||
|
const stringified = srcset.stringify([
|
||
|
{
|
||
|
url: 'banner-HD.jpg',
|
||
|
density: 2
|
||
|
},
|
||
|
{
|
||
|
url: 'banner-phone.jpg',
|
||
|
width: 100
|
||
|
}
|
||
|
]);
|
||
|
|
||
|
console.log(stringified);
|
||
|
// banner-HD.jpg 2x, banner-phone.jpg 100w
|
||
|
```
|
||
|
*/
|
||
|
stringify: (srcSetDefinitions: readonly srcset.SrcSetDefinition[], options?: srcset.Options) => string;
|
||
|
};
|
||
|
|
||
|
export = srcset;
|