feat: use drink api in front and more #16

Merged
Clement merged 47 commits from feat/use-drink-api-in-front into master 2024-06-07 17:09:58 +00:00
Showing only changes of commit 0849ffe42c - Show all commits

View File

@ -1,5 +1,5 @@
import type { AstroComponentFactory } from 'astro/runtime/server/index.js' import type { AstroComponentFactory } from 'astro/runtime/server/index.js'
import type { HTMLAttributes, ImageMetadata } from 'astro/types' import type { HTMLAttributes, ImageMetadata, HTMLInputTypeAttribute } from 'astro/types'
export interface Post { export interface Post {
/** A unique ID number that identifies a post. */ /** A unique ID number that identifies a post. */
@ -26,7 +26,7 @@ export interface Post {
/** */ /** */
category?: Taxonomy category?: Taxonomy
/** */ /** */
tags?: Taxonomy[] tags?: Array<Taxonomy>
/** */ /** */
author?: string author?: string
@ -167,6 +167,8 @@ export interface Input {
label?: string label?: string
autocomplete?: string autocomplete?: string
placeholder?: string placeholder?: string
class?: string
inputClass?: string
} }
export interface Textarea { export interface Textarea {