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.
13 lines
871 B
13 lines
871 B
/**
|
|
* @file CustomJokeStub.ts
|
|
* @brief Exemple d'utilisation de la classe JokeFactory pour créer des blagues personnalisées.
|
|
*/
|
|
|
|
import { JokeFactory } from '../../model/JokeFactory';
|
|
|
|
/**
|
|
* @brief Stub de blagues personnalisées créées à l'aide de la classe JokeFactory.
|
|
* @constant
|
|
* @type {CustomJoke[]}
|
|
*/
|
|
export const customJokeStub = JokeFactory.createCustomJokes('[{"id":"1", "type":"custom", "setup":"one", "punchline":"y\'en a pas", "image":"https://placekitten.com/200/300"},{"id":"2", "type":"custom", "setup":"two","punchline":"y\'en a pas", "image":"https://placekitten.com/200/300"},{"id":"3", "type":"Default", "setup":"three","punchline":"y\'en toujours a pas ;)", "image":"https://placekitten.com/200/300"},{"id":"4", "type":"custom bro", "setup":"four","punchline":"y\'en toujours toujours ap", "image":"https://placekitten.com/200/300"}]'); |