aboutsummaryrefslogtreecommitdiff
path: root/src/fields/PDFField.ts
diff options
context:
space:
mode:
authorAndrew Kim <andrewdkim@users.noreply.github.com>2019-02-26 17:28:02 -0500
committerAndrew Kim <andrewdkim@users.noreply.github.com>2019-02-26 17:28:02 -0500
commit0320123a5d0836dd11324a7eed6757a453c793d9 (patch)
tree6883d47a12524861a535d7512a603d359a6b6036 /src/fields/PDFField.ts
parent124197658624b79426e666b72da7ef960367cf04 (diff)
new version
Diffstat (limited to 'src/fields/PDFField.ts')
-rw-r--r--src/fields/PDFField.ts17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/fields/PDFField.ts b/src/fields/PDFField.ts
deleted file mode 100644
index fe74cd99e..000000000
--- a/src/fields/PDFField.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { BasicField } from "./BasicField";
-import { Field } from "./Field";
-
-export class PDFField extends BasicField<URL> {
- constructor(data: URL | undefined = undefined) {
- super(data == undefined ? new URL("") : data);
- }
-
- toString(): string {
- return this.Data.href;
- }
-
- Copy(): Field {
- return new PDFField(this.Data);
- }
-
-} \ No newline at end of file