@knitli/docs-components 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/favicon/index.js +8 -10
- package/dist/assets/logos/index.js +25 -21
- package/dist/assets/styles/index.js +12 -14
- package/dist/data/products.js +17 -32
- package/dist/index.js +39 -44
- package/dist/styles/index.js +7 -4
- package/dist/types/index.js +1 -7
- package/package.json +12 -5
- package/dist/assets/favicon/android-chrome-192x192.png +0 -0
- package/dist/assets/favicon/android-chrome-512x512.png +0 -0
- package/dist/assets/favicon/apple-touch-icon.png +0 -0
- package/dist/assets/favicon/favicon-16x16.png +0 -0
- package/dist/assets/favicon/favicon-32x32.png +0 -0
- package/dist/assets/favicon/favicon.ico +0 -0
- package/dist/assets/favicon/favicon.svg +0 -86
- package/dist/assets/favicon/index.d.ts +0 -7
- package/dist/assets/favicon/index.d.ts.map +0 -1
- package/dist/assets/favicon/social.webp +0 -0
- package/dist/assets/logos/Thread_vector_mono_aubergine.svg +0 -41
- package/dist/assets/logos/Thread_vector_mono_copper.svg +0 -41
- package/dist/assets/logos/Thread_vector_mono_parchment.svg +0 -41
- package/dist/assets/logos/codeweaver-primary.svg +0 -103
- package/dist/assets/logos/codeweaver-reverse.svg +0 -103
- package/dist/assets/logos/headline_logo.webp +0 -0
- package/dist/assets/logos/headline_logo_dark.png +0 -0
- package/dist/assets/logos/headline_logo_dark.webp +0 -0
- package/dist/assets/logos/index.d.ts +0 -29
- package/dist/assets/logos/index.d.ts.map +0 -1
- package/dist/assets/logos/knitli_logo.svg +0 -143
- package/dist/assets/logos/knitli_wordmark.svg +0 -118
- package/dist/assets/logos/recoco-lg.webp +0 -0
- package/dist/assets/logos/recoco-med.webp +0 -0
- package/dist/assets/logos/recoco-sm.webp +0 -0
- package/dist/assets/logos/recoco-xl.webp +0 -0
- package/dist/assets/logos/recoco-xs.webp +0 -0
- package/dist/assets/styles/codeweaver-theme.css +0 -570
- package/dist/assets/styles/global.css +0 -166
- package/dist/assets/styles/index.d.ts +0 -15
- package/dist/assets/styles/index.d.ts.map +0 -1
- package/dist/assets/styles/knitli-theme.css +0 -215
- package/dist/assets/styles/textures.css +0 -668
- package/dist/assets/styles/typography.css +0 -262
- package/dist/assets/styles/variables.css +0 -238
- package/dist/data/products.d.ts +0 -44
- package/dist/data/products.d.ts.map +0 -1
- package/dist/data/products.json +0 -45
- package/dist/index.d.ts +0 -55
- package/dist/index.d.ts.map +0 -1
- package/dist/styles/custom.css +0 -73
- package/dist/styles/index.d.ts +0 -2
- package/dist/styles/index.d.ts.map +0 -1
- package/dist/templates/AstroConfigTemplate.d.mts +0 -3
- package/dist/templates/AstroConfigTemplate.d.mts.map +0 -1
- package/dist/templates/AstroConfigTemplate.mjs +0 -305
- package/dist/types/index.d.ts +0 -31
- package/dist/types/index.d.ts.map +0 -1
package/dist/styles/custom.css
DELETED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
/* Custom styles for docs-home - Override Knitli global styles */
|
|
2
|
-
/* Reset body to use Starlight defaults instead of Knitli's parchment background */
|
|
3
|
-
body {
|
|
4
|
-
background: var(--sl-color-bg) !important;
|
|
5
|
-
font-family:
|
|
6
|
-
"DM Mono", "Roboto Mono", Menlo, Consolas, "DejaVu Sans Mono", monospace !important;
|
|
7
|
-
color: var(--sl-color-text) !important;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
/* Ensure main content panel uses Starlight theme colors */
|
|
11
|
-
.content-panel {
|
|
12
|
-
background-color: var(--sl-color-bg-nav) !important;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
/* Ensure page background respects Starlight theme, and fills viewport height */
|
|
16
|
-
.page {
|
|
17
|
-
background-color: var(--sl-color-bg) !important;
|
|
18
|
-
min-height: 100dvh !important;
|
|
19
|
-
flex-direction: column !important;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/* Make the main frame grow to push footer to bottom on short pages */
|
|
23
|
-
.main-frame {
|
|
24
|
-
flex: 1 !important;
|
|
25
|
-
display: flex !important;
|
|
26
|
-
flex-direction: column !important;
|
|
27
|
-
background-color: var(--sl-color-bg-nav);
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.main-frame > main {
|
|
31
|
-
flex: 1 !important;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
/* Splash page hero - keep transparent but ensure text uses Starlight colors */
|
|
35
|
-
.splash .hero {
|
|
36
|
-
background-color: transparent;
|
|
37
|
-
color: var(--sl-color-text) !important;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
/* Dark mode colors. */
|
|
41
|
-
:root {
|
|
42
|
-
--font-sans:
|
|
43
|
-
"DM Mono", "Roboto Mono", Menlo, Consolas, "DejaVu Sans Mono", monospace;
|
|
44
|
-
--font-mono: "JetBrains Mono", Menlo, Consolas, "DejaVu Sans Mono", monospace;
|
|
45
|
-
--sl-subnav-height: 2rem;
|
|
46
|
-
|
|
47
|
-
--sl-color-accent-low: #3d170d;
|
|
48
|
-
--sl-color-accent: #ba3100;
|
|
49
|
-
--sl-color-accent-high: #eebbad;
|
|
50
|
-
--sl-color-white: #ffffff;
|
|
51
|
-
--sl-color-gray-1: #efedef;
|
|
52
|
-
--sl-color-gray-2: #cac7ca;
|
|
53
|
-
--sl-color-gray-3: #a8a2a7;
|
|
54
|
-
--sl-color-gray-4: #5c565a;
|
|
55
|
-
--sl-color-gray-5: #3b363a;
|
|
56
|
-
--sl-color-gray-6: #2a2529;
|
|
57
|
-
--sl-color-black: #1a1719;
|
|
58
|
-
}
|
|
59
|
-
/* Light mode colors. */
|
|
60
|
-
:root[data-theme="light"] {
|
|
61
|
-
--sl-color-accent-low: #f4cdc2;
|
|
62
|
-
--sl-color-accent: #982600;
|
|
63
|
-
--sl-color-accent-high: #581b0b;
|
|
64
|
-
--sl-color-white: #1a1719;
|
|
65
|
-
--sl-color-gray-1: #2a2529;
|
|
66
|
-
--sl-color-gray-2: #3b363a;
|
|
67
|
-
--sl-color-gray-3: #5c565a;
|
|
68
|
-
--sl-color-gray-4: #8f898e;
|
|
69
|
-
--sl-color-gray-5: #c4c1c3;
|
|
70
|
-
--sl-color-gray-6: #efedef;
|
|
71
|
-
--sl-color-gray-7: #f7f6f7;
|
|
72
|
-
--sl-color-black: #ffffff;
|
|
73
|
-
}
|
package/dist/styles/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/styles/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,SAAS,QAAgC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AstroConfigTemplate.d.mts","sourceRoot":"","sources":["../../src/templates/AstroConfigTemplate.mjs"],"names":[],"mappings":""}
|
|
@@ -1,305 +0,0 @@
|
|
|
1
|
-
// SPDX-FileCopyrightText: 2026 Knitli Inc.
|
|
2
|
-
//
|
|
3
|
-
// SPDX-License-Identifier: Apache-2.0
|
|
4
|
-
// @ts-check
|
|
5
|
-
// import cloudflare from "@astrojs/cloudflare";
|
|
6
|
-
// import mdx from "@astrojs/mdx";
|
|
7
|
-
// import sitemap from "@astrojs/sitemap";
|
|
8
|
-
import starlight from "@astrojs/starlight";
|
|
9
|
-
// import favicons from "astro-favicons";
|
|
10
|
-
import { DocsAssets } from "@knitli/docs-components";
|
|
11
|
-
import { defineConfig, fontProviders } from "astro/config";
|
|
12
|
-
import { searchForWorkspaceRoot } from "vite";
|
|
13
|
-
// import starlightHeadingBadges from "starlight-heading-badges";
|
|
14
|
-
// import starlightContextualMenu from "starlight-contextual-menu";
|
|
15
|
-
// import starlightTags from "starlight-tags";
|
|
16
|
-
// import starlightLlmsText from "starlight-llms-txt";
|
|
17
|
-
const { headlineLogoDark, headlineLogoLight, variables, docsStyle, faviconIco, faviconSvg, } = DocsAssets;
|
|
18
|
-
const appName = "APP_NAME";
|
|
19
|
-
const description = "DESCRIPTION";
|
|
20
|
-
const shikiCfg = {
|
|
21
|
-
themes: ["catppuccin-latte", "catppuccin-mocha"],
|
|
22
|
-
bundledLangs: [
|
|
23
|
-
"ansi",
|
|
24
|
-
"rust",
|
|
25
|
-
"astro",
|
|
26
|
-
"yaml",
|
|
27
|
-
"bash",
|
|
28
|
-
"python",
|
|
29
|
-
"json",
|
|
30
|
-
"toml",
|
|
31
|
-
"typescript",
|
|
32
|
-
"markdown",
|
|
33
|
-
],
|
|
34
|
-
langAlias: {
|
|
35
|
-
sh: "bash",
|
|
36
|
-
js: "typescript",
|
|
37
|
-
py: "python",
|
|
38
|
-
rs: "rust",
|
|
39
|
-
md: "markdown",
|
|
40
|
-
yml: "yaml",
|
|
41
|
-
},
|
|
42
|
-
};
|
|
43
|
-
// https://astro.build/config
|
|
44
|
-
export default defineConfig({
|
|
45
|
-
site: "https://docs.knitli.com",
|
|
46
|
-
base: `/${appName.toLowerCase()}/`,
|
|
47
|
-
/*
|
|
48
|
-
adapter: cloudflare({
|
|
49
|
-
experimental: {
|
|
50
|
-
headersAndRedirectsDevModeSupport: true,
|
|
51
|
-
},
|
|
52
|
-
configPath: "./wrangler.jsonc",
|
|
53
|
-
imageService: "compile",
|
|
54
|
-
}),
|
|
55
|
-
*/
|
|
56
|
-
favicon: faviconIco,
|
|
57
|
-
// Image optimization
|
|
58
|
-
image: {
|
|
59
|
-
service: {
|
|
60
|
-
entrypoint: "astro/assets/services/sharp",
|
|
61
|
-
},
|
|
62
|
-
responsiveStyles: true,
|
|
63
|
-
layout: "constrained",
|
|
64
|
-
domains: [
|
|
65
|
-
"github.com",
|
|
66
|
-
"raw.githubusercontent.com",
|
|
67
|
-
"docs.knitli.com",
|
|
68
|
-
"knitli.com",
|
|
69
|
-
"avatars.githubusercontent.com",
|
|
70
|
-
"ui-avatars.com",
|
|
71
|
-
`${appName.toLowerCase()}.knitli.com`,
|
|
72
|
-
],
|
|
73
|
-
},
|
|
74
|
-
fonts: [
|
|
75
|
-
{
|
|
76
|
-
provider: fontProviders.google,
|
|
77
|
-
name: "DM Mono",
|
|
78
|
-
cssVariable: "--font-sans",
|
|
79
|
-
weights: [400, 500, 700],
|
|
80
|
-
styles: ["normal", "italic"],
|
|
81
|
-
subsets: ["latin"],
|
|
82
|
-
formats: ["woff2"],
|
|
83
|
-
fallbacks: [
|
|
84
|
-
"Roboto Mono",
|
|
85
|
-
"Menlo",
|
|
86
|
-
"Consolas",
|
|
87
|
-
"DejaVu Sans Mono",
|
|
88
|
-
"monospace",
|
|
89
|
-
],
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
provider: fontProviders.google,
|
|
93
|
-
name: "JetBrains Mono",
|
|
94
|
-
cssVariable: "--font-mono",
|
|
95
|
-
weights: [400, 500, 700],
|
|
96
|
-
styles: ["normal", "italic"],
|
|
97
|
-
subsets: ["latin"],
|
|
98
|
-
formats: ["woff2"],
|
|
99
|
-
fallbacks: [
|
|
100
|
-
"DM Mono",
|
|
101
|
-
"Roboto Mono",
|
|
102
|
-
"Menlo",
|
|
103
|
-
"Consolas",
|
|
104
|
-
"DejaVu Sans Mono",
|
|
105
|
-
"monospace",
|
|
106
|
-
],
|
|
107
|
-
},
|
|
108
|
-
],
|
|
109
|
-
headingIdCompat: true,
|
|
110
|
-
preserveScriptOrder: true,
|
|
111
|
-
// Build optimizations
|
|
112
|
-
build: {
|
|
113
|
-
inlineStylesheets: "auto",
|
|
114
|
-
assets: "_astro",
|
|
115
|
-
},
|
|
116
|
-
markdown: {
|
|
117
|
-
shikiConfig: {
|
|
118
|
-
...Object.fromEntries(Object.entries(shikiCfg).map(([key, value]) => key === "themes"
|
|
119
|
-
? [
|
|
120
|
-
key,
|
|
121
|
-
{
|
|
122
|
-
light: "catppuccin-latte",
|
|
123
|
-
dark: "catppuccin-mocha",
|
|
124
|
-
},
|
|
125
|
-
]
|
|
126
|
-
: [key, value])),
|
|
127
|
-
},
|
|
128
|
-
},
|
|
129
|
-
trailingSlash: "always",
|
|
130
|
-
// Vite configuration for better bundling
|
|
131
|
-
vite: {
|
|
132
|
-
server: {
|
|
133
|
-
fs: {
|
|
134
|
-
allow: [searchForWorkspaceRoot(process.cwd())],
|
|
135
|
-
},
|
|
136
|
-
},
|
|
137
|
-
assetsInclude: [
|
|
138
|
-
"src/*.webp",
|
|
139
|
-
"src/*.png",
|
|
140
|
-
"src/*.jpg",
|
|
141
|
-
"src/*.jpeg",
|
|
142
|
-
"src/*.svg",
|
|
143
|
-
"src/*.avif",
|
|
144
|
-
],
|
|
145
|
-
build: {
|
|
146
|
-
cssCodeSplit: true,
|
|
147
|
-
cssMinify: "lightningcss",
|
|
148
|
-
rolldownOptions: {
|
|
149
|
-
output: {
|
|
150
|
-
experimental: {
|
|
151
|
-
nativeMagicString: true,
|
|
152
|
-
},
|
|
153
|
-
},
|
|
154
|
-
treeshake: "smallest",
|
|
155
|
-
optimization: {
|
|
156
|
-
inlineConst: "smart",
|
|
157
|
-
},
|
|
158
|
-
ssr: false,
|
|
159
|
-
},
|
|
160
|
-
},
|
|
161
|
-
css: {
|
|
162
|
-
lightningcss: {},
|
|
163
|
-
},
|
|
164
|
-
},
|
|
165
|
-
prefetch: {
|
|
166
|
-
defaultStrategy: "viewport",
|
|
167
|
-
},
|
|
168
|
-
experimental: {
|
|
169
|
-
chromeDevtoolsWorkspace: true,
|
|
170
|
-
clientPrerender: true,
|
|
171
|
-
contentIntellisense: true,
|
|
172
|
-
svgo: {
|
|
173
|
-
plugins: [
|
|
174
|
-
{
|
|
175
|
-
name: "preset-default",
|
|
176
|
-
params: {
|
|
177
|
-
overrides: {
|
|
178
|
-
removeMetadata: false,
|
|
179
|
-
},
|
|
180
|
-
},
|
|
181
|
-
},
|
|
182
|
-
],
|
|
183
|
-
},
|
|
184
|
-
rustCompiler: true,
|
|
185
|
-
},
|
|
186
|
-
// Static site generation for Cloudflare
|
|
187
|
-
output: "static",
|
|
188
|
-
integrations: [
|
|
189
|
-
starlight({
|
|
190
|
-
title: `${appName} Docs`,
|
|
191
|
-
description: description,
|
|
192
|
-
logo: {
|
|
193
|
-
dark: headlineLogoDark,
|
|
194
|
-
light: headlineLogoLight,
|
|
195
|
-
alt: "knitli logo",
|
|
196
|
-
replacesTitle: true,
|
|
197
|
-
},
|
|
198
|
-
editLink: {
|
|
199
|
-
baseUrl: `https://github.com/knitli/${appName.toLowerCase()}/edit/main/docs-site/src`,
|
|
200
|
-
},
|
|
201
|
-
expressiveCode: {
|
|
202
|
-
useStarlightDarkModeSwitch: true,
|
|
203
|
-
themes: ["catppuccin-latte", "catppuccin-mocha"],
|
|
204
|
-
removeUnusedThemes: true,
|
|
205
|
-
shiki: {
|
|
206
|
-
...Object.fromEntries(Object.entries(shikiCfg).filter(([key]) => key !== "themes")),
|
|
207
|
-
},
|
|
208
|
-
},
|
|
209
|
-
plugins: [
|
|
210
|
-
/*
|
|
211
|
-
astroD2({ skipGeneration: true }),
|
|
212
|
-
starlightLinksValidator(),
|
|
213
|
-
|
|
214
|
-
starlightScrollToTop(),
|
|
215
|
-
starlightChangelogs(),
|
|
216
|
-
starlightIconsPlugin(),
|
|
217
|
-
starlightPageActions({ baseUrl: `https://docs.knitli.com/${appName.toLowerCase()}` }),
|
|
218
|
-
starlightIconsIntegration(),
|
|
219
|
-
starlightIconsPlugin(),
|
|
220
|
-
starlightHeadingBadges(), starlightContextualMenu({
|
|
221
|
-
actions: ["copy", "view", "claude", "chatgpt"], share: true,
|
|
222
|
-
}),
|
|
223
|
-
// We need to configure starlight-tags with a tags.yml.
|
|
224
|
-
//starlightTags(),
|
|
225
|
-
starlightLlmsText({
|
|
226
|
-
projectName: appName,
|
|
227
|
-
description: `${appName} is a pure-Rust fork of the popular data processing and ETL framework, [CocoIndex](https://cocoindex.io). ${appName} features a highly modular architecture, with all sources, targets, and functions (i.e. transforms) implemented as feature-gated plugins. This allows users to easily customize and extend the framework to fit their specific data processing needs, while keeping the core lightweight and efficient.
|
|
228
|
-
Like CocoIndex, ${appName} is fast, efficient, and works on data incrementally. Both libraries are built using a *dataflow architecture*, allowing you to easily define complex data processing pipelines with multiple sources, targets, and transforms in only a few lines of code. CocoIndex is built in Rust, but its entire API is only in Python, and does not allow for choosing integrations. ${appName} exposes a robust Rust API that allows you to choose exactly which sources, targets, and transforms you want to use.
|
|
229
|
-
`,
|
|
230
|
-
promote: ["getting-started*", "architecture*", "file-processing*", "transient-flow*"],
|
|
231
|
-
demote: ["contributing*", "changelog*"],
|
|
232
|
-
minify: {
|
|
233
|
-
whitespace: true,
|
|
234
|
-
note: true,
|
|
235
|
-
details: true,
|
|
236
|
-
}
|
|
237
|
-
})
|
|
238
|
-
*/
|
|
239
|
-
],
|
|
240
|
-
social: [
|
|
241
|
-
{
|
|
242
|
-
icon: "github",
|
|
243
|
-
label: "GitHub",
|
|
244
|
-
href: `https://github.com/knitli/${appName.toLowerCase()}`,
|
|
245
|
-
},
|
|
246
|
-
],
|
|
247
|
-
components: {
|
|
248
|
-
Footer: "@knitli/docs-components/Footer.astro",
|
|
249
|
-
PageFrame: "@knitli/docs-components/PageFrame.astro",
|
|
250
|
-
},
|
|
251
|
-
customCss: [variables, docsStyle, "./src/styles/custom.css"],
|
|
252
|
-
head: [
|
|
253
|
-
{
|
|
254
|
-
tag: "meta",
|
|
255
|
-
attrs: {
|
|
256
|
-
property: "og:image",
|
|
257
|
-
content: `https://docs.knitli.com/${appName.toLowerCase()}/og-image.png`,
|
|
258
|
-
},
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
tag: "meta",
|
|
262
|
-
attrs: {
|
|
263
|
-
property: "twitter:card",
|
|
264
|
-
content: "summary_large_image",
|
|
265
|
-
},
|
|
266
|
-
},
|
|
267
|
-
],
|
|
268
|
-
sidebar: [
|
|
269
|
-
{
|
|
270
|
-
label: "Guides",
|
|
271
|
-
autogenerate: { directory: "guides" },
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
label: "Examples",
|
|
275
|
-
autogenerate: { directory: "examples" },
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
label: "Reference",
|
|
279
|
-
autogenerate: { directory: "reference" },
|
|
280
|
-
},
|
|
281
|
-
],
|
|
282
|
-
}),
|
|
283
|
-
/*
|
|
284
|
-
mdx(),
|
|
285
|
-
favicons({
|
|
286
|
-
name: `${appName} Docs by Knitli`,
|
|
287
|
-
short_name: `${appName} Docs`,
|
|
288
|
-
input: {
|
|
289
|
-
favicons: [faviconSvg],
|
|
290
|
-
},
|
|
291
|
-
}),
|
|
292
|
-
sitemap({
|
|
293
|
-
filter: (page) => !/\^\/(?!cdn-cgi\/)/.test(page),
|
|
294
|
-
changefreq: "weekly",
|
|
295
|
-
priority: 0.4,
|
|
296
|
-
lastmod: new Date(),
|
|
297
|
-
namespaces: {
|
|
298
|
-
image: false,
|
|
299
|
-
video: false,
|
|
300
|
-
},
|
|
301
|
-
}),
|
|
302
|
-
|
|
303
|
-
*/
|
|
304
|
-
],
|
|
305
|
-
});
|
package/dist/types/index.d.ts
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Site URLs configuration
|
|
3
|
-
*/
|
|
4
|
-
export interface SiteUrls {
|
|
5
|
-
marketing: string;
|
|
6
|
-
blog: string;
|
|
7
|
-
docs: string;
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* Props for DocsBreadcrumb component
|
|
11
|
-
*/
|
|
12
|
-
export interface DocsBreadcrumbProps {
|
|
13
|
-
/**
|
|
14
|
-
* Current product name
|
|
15
|
-
*/
|
|
16
|
-
product?: string;
|
|
17
|
-
/**
|
|
18
|
-
* URL to the product's documentation home
|
|
19
|
-
*/
|
|
20
|
-
productUrl?: string;
|
|
21
|
-
/**
|
|
22
|
-
* Current path within the product docs
|
|
23
|
-
*/
|
|
24
|
-
path?: string;
|
|
25
|
-
/**
|
|
26
|
-
* Visual variant of the breadcrumb
|
|
27
|
-
* @default 'default'
|
|
28
|
-
*/
|
|
29
|
-
variant?: "default" | "compact" | "inline";
|
|
30
|
-
}
|
|
31
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAUA;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;OAGG;IACH,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;CAC5C"}
|