9 lines
242 B
TypeScript
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
|
|
}
|
|
>
|