Sam Therapy
4d554e7095
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Sam Therapy <sam@samtherapy.net>
16 lines
350 B
TypeScript
16 lines
350 B
TypeScript
/**
|
|
* Config type to reduce boilerplate
|
|
*/
|
|
export type config = {
|
|
instance: string
|
|
type: "misskey" | "mastodon" | "pleroma"
|
|
accessToken: string
|
|
refreshToken: string | null
|
|
message: string
|
|
visibility: "direct" | "unlisted" | "private" | "public"
|
|
remote: boolean
|
|
booru: string
|
|
tags: string[]
|
|
directory: string
|
|
retries: number
|
|
}
|