mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
14 lines
422 B
Swift
14 lines
422 B
Swift
//
|
|
// LexicalModelRepositoryDelegate.swift
|
|
// KeymanEngine
|
|
//
|
|
// Created by Randy Boring on 3/19/19.
|
|
// Copyright © 2019 SIL International. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol LexicalModelRepositoryDelegate: class {
|
|
func lexicalModelRepositoryDidFetchList(_ repository: LexicalModelRepository)
|
|
func lexicalModelRepository(_ repository: LexicalModelRepository, didFailFetch error: Error)
|
|
}
|