1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-28 23:28:16 +02:00

XFA -- Add localset object (#12948)

- Specifications: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.364.2157&rep=rep1&type=pdf#page=943
This commit is contained in:
calixteman 2021-02-10 09:04:43 -08:00 committed by GitHub
parent 7f7f22037e
commit 3787bd41ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 347 additions and 0 deletions

View file

@ -14,11 +14,13 @@
*/
import { ConfigNamespace } from "./config.js";
import { LocaleSetNamespace } from "./locale_set.js";
import { TemplateNamespace } from "./template.js";
import { XdpNamespace } from "./xdp.js";
const NamespaceSetUp = {
config: ConfigNamespace,
localeSet: LocaleSetNamespace,
template: TemplateNamespace,
xdp: XdpNamespace,
};