mirror of
https://github.com/withastro/astro.git
synced 2025-03-03 22:57:08 -05:00
expose relevant types
This commit is contained in:
parent
6428abf706
commit
46904a1dcb
1 changed files with 14 additions and 2 deletions
|
@ -1,5 +1,17 @@
|
|||
export { defineCollection, defineWritableCollection, field } from './config.js';
|
||||
|
||||
export { type ResolvedCollectionConfig, type DBDataContext } from './config.js';
|
||||
export type { ResolvedCollectionConfig, DBDataContext } from './config.js';
|
||||
export type {
|
||||
DBCollection,
|
||||
DBCollections,
|
||||
DBSnapshot,
|
||||
DBField,
|
||||
BooleanField,
|
||||
NumberField,
|
||||
TextField,
|
||||
DateField,
|
||||
DateFieldInput,
|
||||
JsonField,
|
||||
FieldType,
|
||||
} from './types.js';
|
||||
export { cli } from './cli/index.js';
|
||||
export { integration as default } from './integration.js';
|
||||
|
|
Loading…
Add table
Reference in a new issue