mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 12:21:30 +03:00
14 lines
633 B
TypeScript
14 lines
633 B
TypeScript
|
/** @file File associations for client application. */
|
||
|
|
||
|
/** The extension for the source file, without the leading period character. */
|
||
|
export const SOURCE_FILE_EXTENSION = 'enso'
|
||
|
|
||
|
/** The extension for the project bundle, without the leading period character. */
|
||
|
export const BUNDLED_PROJECT_EXTENSION = 'enso-project'
|
||
|
|
||
|
/** The filename suffix for the source file, including the leading period character. */
|
||
|
export const SOURCE_FILE_SUFFIX = `.${SOURCE_FILE_EXTENSION}`
|
||
|
|
||
|
/** The filename suffix for the project bundle, including the leading period character. */
|
||
|
export const BUNDLED_PROJECT_SUFFIX = `.${BUNDLED_PROJECT_EXTENSION}`
|