Move inscription type to utils

This commit is contained in:
natsoni
2024-10-08 12:53:18 +09:00
parent 1ddb8a39c9
commit 57a05c80a2
4 changed files with 12 additions and 13 deletions

View File

@@ -1,14 +1,6 @@
import { ChangeDetectionStrategy, Component, Input, OnChanges, SimpleChanges } from '@angular/core';
import { Runestone, Etching } from '../../shared/ord/rune.utils';
export interface Inscription {
body?: Uint8Array;
is_cropped?: boolean;
body_length?: number;
content_type?: Uint8Array;
content_type_str?: string;
delegate_txid?: string;
}
import { Inscription } from '../../shared/ord/inscription.utils';
@Component({
selector: 'app-ord-data',