Files

8 lines
222 B
TypeScript
Raw Permalink Normal View History

2026-02-04 00:11:19 +05:00
/**
* A PDF entity, like images or fonts, which needs to be embedded into the
* document before saving.
*/
export default interface Embeddable {
embed: () => Promise<void>;
}
//# sourceMappingURL=Embeddable.d.ts.map