This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Разрешенные импорты (для сортировки) */ | |
const ALLOWED_PATH_GROUPS = ["pages/**", "features/**", "entities/**", "shared/**"].map( | |
(pattern) => ({ | |
pattern, | |
group: "internal", | |
position: "after", | |
}), | |
); | |
/** Для запрета приватных путей */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface IBufferedField { | |
void Swap(); | |
int this[int x, int y]; | |
int ReadBack(int x, int y); | |
} |