chore: format everything
This commit is contained in:
+19
-19
@@ -5,23 +5,23 @@ import { USyncUser } from '../WAUSync'
|
||||
* Defines the interface for a USyncQuery protocol
|
||||
*/
|
||||
export interface USyncQueryProtocol {
|
||||
/**
|
||||
* The name of the protocol
|
||||
*/
|
||||
name: string
|
||||
/**
|
||||
* Defines what goes inside the query part of a USyncQuery
|
||||
*/
|
||||
getQueryElement: () => BinaryNode
|
||||
/**
|
||||
* Defines what goes inside the user part of a USyncQuery
|
||||
*/
|
||||
getUserElement: (user: USyncUser) => BinaryNode | null
|
||||
/**
|
||||
* The name of the protocol
|
||||
*/
|
||||
name: string
|
||||
/**
|
||||
* Defines what goes inside the query part of a USyncQuery
|
||||
*/
|
||||
getQueryElement: () => BinaryNode
|
||||
/**
|
||||
* Defines what goes inside the user part of a USyncQuery
|
||||
*/
|
||||
getUserElement: (user: USyncUser) => BinaryNode | null
|
||||
|
||||
/**
|
||||
* Parse the result of the query
|
||||
* @param data Data from the result
|
||||
* @returns Whatever the protocol is supposed to return
|
||||
*/
|
||||
parser: (data: BinaryNode) => unknown
|
||||
}
|
||||
/**
|
||||
* Parse the result of the query
|
||||
* @param data Data from the result
|
||||
* @returns Whatever the protocol is supposed to return
|
||||
*/
|
||||
parser: (data: BinaryNode) => unknown
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user