@malloydata/malloy 0.0.71-dev230811214741 → 0.0.71
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/index.d.ts +1 -1
- package/dist/tags.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,4 +8,4 @@ export type { RunSQLOptions } from './run_sql_options';
|
|
|
8
8
|
export { DialectProvider } from './runtime_types';
|
|
9
9
|
export type { URLReader, InfoConnection, LookupConnection, Connection, QueryString, ModelString, QueryURL, ModelURL, PooledConnection, TestableConnection, PersistSQLResults, StreamingConnection, } from './runtime_types';
|
|
10
10
|
export { toAsyncGenerator } from './connection_utils';
|
|
11
|
-
export { Tags, type MalloyTags, type MalloyTagProperties, Tag, type TagDict, } from './tags';
|
|
11
|
+
export { Tags, type MalloyTags, type MalloyTagProperties, type TagParse, Tag, type TagDict, } from './tags';
|
package/dist/tags.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { LogMessage } from './lang';
|
|
|
2
2
|
import { Annotation } from './model';
|
|
3
3
|
export declare type TagDict = Record<string, TagInterface>;
|
|
4
4
|
declare type TagValue = string | TagInterface[];
|
|
5
|
-
interface TagInterface {
|
|
5
|
+
export interface TagInterface {
|
|
6
6
|
eq?: TagValue;
|
|
7
7
|
properties?: TagDict;
|
|
8
8
|
}
|