main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
524 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | import { Collection } from '../nodes/Collection.js';
|
---|
| 2 | import { StringifyContext } from './stringify.js';
|
---|
| 3 | interface StringifyCollectionOptions {
|
---|
| 4 | blockItemPrefix: string;
|
---|
| 5 | flowChars: {
|
---|
| 6 | start: '{';
|
---|
| 7 | end: '}';
|
---|
| 8 | } | {
|
---|
| 9 | start: '[';
|
---|
| 10 | end: ']';
|
---|
| 11 | };
|
---|
| 12 | itemIndent: string;
|
---|
| 13 | onChompKeep?: () => void;
|
---|
| 14 | onComment?: () => void;
|
---|
| 15 | }
|
---|
| 16 | export declare function stringifyCollection(collection: Readonly<Collection>, ctx: StringifyContext, options: StringifyCollectionOptions): string;
|
---|
| 17 | export {};
|
---|
Note:
See
TracBrowser
for help on using the repository browser.