You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
666 B
JavaScript
36 lines
666 B
JavaScript
import { verde } from '$lib/templates/verde';
|
|
import { azul } from '$lib/templates/azul';
|
|
import { corazon } from '$lib/templates/corazon';
|
|
/**
|
|
* @typedef {{
|
|
* top: number;
|
|
* height: number;
|
|
* right: number;
|
|
* left: number;
|
|
* color: string;
|
|
* fontSize: number;
|
|
* fontFamily: string;
|
|
* lineHeight: number;
|
|
* textAlign: string;
|
|
* fontWeight: number;
|
|
* }} Element
|
|
*/
|
|
|
|
/**
|
|
* @typedef {{
|
|
* name: string;
|
|
* image: string;
|
|
* heading: Element;
|
|
* title: Element;
|
|
* subtitle: Element;
|
|
* date: Element;
|
|
* time: Element;
|
|
* weekday: Element;
|
|
* content: Element;
|
|
* address: Element;
|
|
* }} Template
|
|
*/
|
|
|
|
/** @type Array<Template> */
|
|
export const templates = [verde, azul, corazon];
|