Files
form/scripts/types.d.ts
Corbin Crutchley 74ac9f4b9c Update build tooling (#401)
* chore: inital work to migrate to Query's alpha package setup

* chore: update deps

* chore: fix build issues

* chore: disable no-children-prop rule
2023-07-04 21:06:03 -06:00

48 lines
805 B
TypeScript

import type { RollupOptions } from 'rollup'
export type Commit = {
commit: CommitOrTree
tree: CommitOrTree
author: AuthorOrCommitter
committer: AuthorOrCommitter
subject: string
body: string
parsed: Parsed
}
export type CommitOrTree = {
long: string
short: string
}
export type AuthorOrCommitter = {
name: string
email: string
date: string
}
export type Parsed = {
type: string | null
scope?: string | null
subject: string
merge?: null
header: string
body?: null
footer?: null
notes?: null[] | null
references?: null[] | null
mentions?: null[] | null
revert?: null
raw: string
}
export type Package = {
name: string
packageDir: string
entries: Array<'main' | 'module' | 'svelte' | 'types'>
}
export type BranchConfig = {
prerelease: boolean
}