summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-search/src/models/Result.js
blob: 71c6d9df4bbd7beb42a386e261f438c22884591e (plain)
1
2
3
4
5
6
7
8
9
10
const GitBook = require('gitbook-core');
const { Record } = GitBook.Immutable;

const Result = Record({
    url:   String(''),
    title: String(''),
    body:  String('')
});

module.exports = Result;