Files
reacord/library/embed/embed-options.ts
MapleLeaf 51bbdea73e some docs
2021-12-26 15:05:58 -06:00

9 lines
242 B
TypeScript

import type { Except, SnakeCasedPropertiesDeep } from "type-fest"
import type { EmbedProps } from "./embed"
export type EmbedOptions = SnakeCasedPropertiesDeep<
Except<EmbedProps, "timestamp" | "children"> & {
timestamp?: string
}
>