(config: IPageLayoutConfig[])
| 37 | } |
| 38 | |
| 39 | export function setFrontendLayoutConfig(config: IPageLayoutConfig[]) { |
| 40 | storage.writeFile(LAYOUT_CONFIG_NAME, JSON.stringify(config, null, 2)); |
| 41 | } |
| 42 | |
| 43 | export function resetFrontendLayoutConfig() { |
| 44 | storage.deleteFile(LAYOUT_CONFIG_NAME); |
no test coverage detected