| 115 | } |
| 116 | |
| 117 | interface InternalScript { |
| 118 | name: string; |
| 119 | file: string; |
| 120 | scriptName: string; |
| 121 | findRegex: string; |
| 122 | replaceString: string; |
| 123 | disabled: boolean; |
| 124 | placement: number[]; |
| 125 | runOnEdit: boolean; |
| 126 | _source: string; |
| 127 | type: string; |
| 128 | matchedApp: string | string[] | null; |
| 129 | regexTags: string[]; |
| 130 | } |
| 131 | |
| 132 | // ── Constants ────────────────────────────────────────────────────── |
| 133 |
nothing calls this directly
no outgoing calls
no test coverage detected