resourcesBefore.ps1

<#
This file loads the strings documents from the respective language folders.
This allows localizing messages and errors.
Load psd1 language files for each language you wish to support.
Partial translations are acceptable - when missing a current language message,
it will fallback to English or another available language.
#>

Import-PSFLocalizedString -Path "$($ModuleRoot)\en-us\*.psd1" -Module 'fscps.ascii' -Language 'en-US'

enum BorderType {
    None
    Asterisk
    Hash
    Box
    TwoLinesFrame
    BoxBorder
    DoubleBox
    DoubleCorners
    BubbleBorder
    Plus
    Dots   
    DoubleDots
}

enum LayoutType {
    Default
    Full
    Fitted
    ControlledSmushing
    UniversalSmushing
}