@crowdstrike/logscale-file-editor 1.149.0--build-1667--sha-9a5133079afe4266311a53cea0315e01e7b08af1 → 1.151.1--build-1732--sha-564fe0b7c314a41b4be19d6eff1dbbc7bbf08098
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/index.d.ts +4 -0
- package/index.js +179 -182
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -107,6 +107,10 @@ export declare interface Options extends CommonOptions {
|
|
107
107
|
limit?: number;
|
108
108
|
/** The string to filter rows by. */
|
109
109
|
filterString?: string | null;
|
110
|
+
/** Whether the editor should be read-only or editable. Defaults to false (meaning it's editable).
|
111
|
+
* Note that if the file can't be edited by the user, then it will be read-only regardless of this value.
|
112
|
+
*/
|
113
|
+
readOnly?: boolean;
|
110
114
|
}
|
111
115
|
|
112
116
|
/**
|