mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-03 14:59:18 +02:00
12 lines
448 B
TypeScript
12 lines
448 B
TypeScript
import Section from "../section";
|
|
import Contents from "../contents";
|
|
|
|
export function replaceBase(doc: Document, section: Section): void;
|
|
|
|
export function replaceCanonical(doc: Document, section: Section): void;
|
|
|
|
export function replaceMeta(doc: Document, section: Section): void;
|
|
|
|
export function replaceLinks(contents: Contents, fn: Function): void;
|
|
|
|
export function substitute(contents: Contents, urls: string[], replacements: string[]): void;
|