UNPKG

@draft-js-plugins/focus

Version:
9 lines (8 loc) 270 B
import { List } from 'immutable'; export interface BlockKeyStore { add(key: string): List<string>; remove(key: string): List<string>; includes(key: string): boolean; getAll(): List<string>; } export default function createBlockKeyStore(): BlockKeyStore;