mirror of
https://github.com/TxtDot/dalet.git
synced 2025-02-24 13:21:27 +03:00
fix: optimize daletpack strings, update types.ts
This commit is contained in:
parent
dc12c44895
commit
6a693821a9
4 changed files with 33 additions and 40 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@txtdot/dalet",
|
||||
"version": "1.0.0-pre2",
|
||||
"version": "1.0.0-pre3",
|
||||
"description": "Dalet implementation in typescript",
|
||||
"main": "dist/lib.js",
|
||||
"types": "dist/lib.d.ts",
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
export type Page = Tag[];
|
||||
export interface Page {
|
||||
data: Tag[];
|
||||
}
|
||||
export type Body = string | Tag[] | null;
|
||||
export type Argument = string | number | null;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue