Skip to content

Instantly share code, notes, and snippets.

View tech-shamp's full-sized avatar
🎯
Learning

Shamp Dev tech-shamp

🎯
Learning
View GitHub Profile
# this file contains keys needed for decryption of file system data (WUD/WUX)
# 1 key per line, any text after a '#' character is considered a comment
# the emulator will automatically pick the right key
541b9889519b27d363cd21604b97c67a # example key (can be deleted)
d7b00402659ba2abd2cb0db27fa2b656 # Common
805e6285cd487de0faffaa65a6985e17 # Espresso Ancast
b5d8ab06ed7f6cfc529f2ce1b4ea32fd # Starbuck Ancast
9a164ee15ac7ceb64d3cc130094095f6 # 007 Legends [EUR, NUS]
@tech-shamp
tech-shamp / index.ts
Last active August 30, 2023 07:20
Prisma Client Declaration
import { PrismaClient } from "@prisma/client"
let prisma: PrismaClient
declare global {
namespace NodeJS {
interface Global {
prisma: PrismaClient
}
}