This file contains hidden or 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
Game.DirSymlinkExclusions = ["OakGame\\Binaries\\Win64"]; | |
Game.GameName = "Borderlands 3"; | |
Game.HandlerInterval = 100; | |
Game.SymlinkExe = false; | |
Game.SymlinkGame = true; | |
Game.SymlinkFolders = true; | |
Game.ExecutableName = "Borderlands3.exe"; | |
Game.GUID = "Borderlands 3"; | |
Game.MaxPlayers = 4; | |
Game.MaxPlayersOneMonitor = 4; |
This file contains hidden or 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
export {} | |
declare module 'stripe' { // Existing module w/types | |
interface IListOptionsCreated { // Existing interface | |
email?: string // Added property | |
} | |
} |
This file contains hidden or 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
// Define our record defaults | |
const fruitDefaults = { | |
name: '', | |
numberOwned: 0, | |
best: false, | |
} | |
// Define our record types with a typescript interface | |
interface IFruitParams { |
This file contains hidden or 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
// Our fruit list | |
const fruitData = fromJS([ | |
{ | |
name: 'blueberry', | |
numberOwned: 10, | |
best: true, | |
}, | |
{ | |
name: 'banana', | |
numberOwned: 0, |
This file contains hidden or 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
find . -name "*.js" -exec bash -c 'mv "$1" "$(sed "s/\.js$/.tsx/" <<< "$1")"' - '{}' \; | |
find . -name "types.js.flow" -exec bash -c 'mv "$1" "$(sed "s/\types.js.flow$/index.d.ts/" <<< "$1")"' - '{}' \; |
This file contains hidden or 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
temp |