Interface FontAsset
interface FontAsset {
"[dispose]": () => void;
color?: string;
dispose: () => void;
family: string;
id: string;
isBuiltIn?: boolean;
metadata?: Record<string, unknown>;
name: string;
style?: string;
toJSON: () => Schema.FontAsset;
type: "asset:font";
weight?: number;
}
"[dispose]": () => void;
color?: string;
dispose: () => void;
family: string;
id: string;
isBuiltIn?: boolean;
metadata?: Record<string, unknown>;
name: string;
style?: string;
toJSON: () => Schema.FontAsset;
type: "asset:font";
weight?: number;
}
Hierarchy (View Summary)
Properties
[dispose]
"[dispose]": () => void
Optionalcolor
color?: string
dispose
dispose: () => void
family
family: string
id
id: string
OptionalisBuiltIn
isBuiltIn?: boolean
Optionalmetadata
metadata?: Record<string, unknown>
name
name: string
Optionalstyle
style?: string
toJSON
type
type: "asset:font"
Optionalweight
weight?: number