Skip to content
Snippets Groups Projects
query.ts 301 B
/**
 * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
 *
 * @author David Sehnal <david.sehnal@gmail.com>
 */

import Structure from './structure'
import Selection from './query/selection'

interface Query { (s: Structure): Selection }

export default Query