pxt-common-packages
Version:
Microsoft MakeCode (PXT) common packages
16 lines (15 loc) • 361 B
text/typescript
namespace pxsim.configStorage {
export function setBuffer(key: string, value: RefBuffer): void {
// TODO
}
export function getBuffer(key: string): RefBuffer {
// TODO
return undefined;
}
export function removeItem(key: string): void {
// TODO
}
export function clear(): void {
// TODO
}
}