Skip to content

Instantly share code, notes, and snippets.

View binjospookie's full-sized avatar
🌿

Viktor Pasynok binjospookie

🌿
  • Saint-Petersburg
View GitHub Profile
const addExternalProcessingData = declareAction<Record<string, unknown>>();
const EVENTS = {
[EVENT_NAME.ADD_PROCESSING_DATA]: addExternalProcessingData,
} as const;
const makeCall = (store: Store) => ({
name,
payload,
}: {

Анимации для игры:

Основное:

module.exports = {
printWidth: 120,
parser: 'typescript',
useTabs: false,
singleQuote: true,
trailingComma: 'all',
};
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"rules": {
"quotemark": [
true,
"single",
"jsx-double"
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"jsx": "react",
"strict": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": [ "es2017", "dom" ],