17 lines
396 B
TypeScript
17 lines
396 B
TypeScript
import * as v from 'valibot';
|
|
|
|
import { dateSchema } from '../utils';
|
|
|
|
/** @see {@link https://docs.joinmastodon.org/entities/Admin_DomainAllow/} */
|
|
const adminDomainAllowSchema = v.object({
|
|
id: v.string(),
|
|
domain: v.string(),
|
|
created_at: dateSchema,
|
|
});
|
|
|
|
type AdminDomainAllow = v.InferOutput<typeof adminDomainAllowSchema>;
|
|
|
|
export {
|
|
adminDomainAllowSchema,
|
|
type AdminDomainAllow,
|
|
};
|