File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ Not the version you are looking for?
3434| ` faker.address.citySuffix ` | _ Removed_ |
3535| ` faker.address.streetPrefix ` | _ Removed_ |
3636| ` faker.address.streetSuffix ` | _ Removed_ |
37+ | ` faker.image.lorempixel ` | _ Removed, as the LoremPixel service is no longer available_ |
3738
3839### Locale renamed
3940
Original file line number Diff line number Diff line change @@ -2,19 +2,13 @@ import type { Faker } from '../..';
22import { deprecated } from '../../internal/deprecated' ;
33import type { MethodsOf } from '../../utils/types' ;
44import { LoremPicsum } from './providers/lorempicsum' ;
5- import { Lorempixel } from './providers/lorempixel' ;
65import { Placeholder } from './providers/placeholder' ;
76import { Unsplash } from './providers/unsplash' ;
87
98/**
109 * Module to generate images.
1110 */
1211export class ImageModule {
13- /**
14- * @deprecated Use `faker.image` instead.
15- */
16- readonly lorempixel : Lorempixel ;
17-
1812 /**
1913 * @deprecated Use `faker.image` instead.
2014 */
@@ -39,7 +33,6 @@ export class ImageModule {
3933 this [ name ] = this [ name ] . bind ( this ) ;
4034 }
4135
42- this . lorempixel = new Lorempixel ( this . faker ) ;
4336 this . unsplash = new Unsplash ( this . faker ) ;
4437 this . lorempicsum = new LoremPicsum ( this . faker ) ;
4538 this . placeholder = new Placeholder ( this . faker ) ;
You can’t perform that action at this time.
0 commit comments