9 lines
426 B
TypeScript
9 lines
426 B
TypeScript
import type { Dictionary } from "@/i18n/dictionaries"
|
|
import type { ItemSchemaCopy } from "@/schemas/item.schema"
|
|
|
|
export type ItemListCopy = Dictionary["inventory"]["items"]["list"]
|
|
export type ItemDetailCopy = Dictionary["inventory"]["items"]["detail"]
|
|
export type ItemFormCopy = Dictionary["inventory"]["items"]["form"]
|
|
export type ItemDeleteCopy = Dictionary["inventory"]["items"]["delete"]
|
|
export type { ItemSchemaCopy }
|